Merge pull request #2953 from novaugust/authenticate-ember-routes

Change `posts`, `post`, and `signout` routes to be `AuthenticatedRoute`s
This commit is contained in:
Hannah Wolfe 2014-06-14 08:15:48 +02:00
commit b9c6a8bbcb
3 changed files with 11 additions and 6 deletions

View File

@ -1,4 +1,6 @@
var PostsIndexRoute = Ember.Route.extend({
import AuthenticatedRoute from 'ghost/routes/authenticated';
var PostsIndexRoute = AuthenticatedRoute.extend({
// redirect to first post subroute
redirect: function () {
var firstPost = (this.modelFor('posts') || []).get('firstObject');

View File

@ -1,4 +1,6 @@
var PostsPostRoute = Ember.Route.extend({
import AuthenticatedRoute from 'ghost/routes/authenticated';
var PostsPostRoute = AuthenticatedRoute.extend({
model: function (params) {
var post = this.modelFor('posts').findBy('id', params.post_id);

View File

@ -1,7 +1,8 @@
import ajax from 'ghost/utils/ajax';
import styleBody from 'ghost/mixins/style-body';
import AuthenticatedRoute from 'ghost/routes/authenticated';
var SignoutRoute = Ember.Route.extend(styleBody, {
var SignoutRoute = AuthenticatedRoute.extend(styleBody, {
classNames: ['ghost-signout'],
beforeModel: function () {