mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Merge pull request #2953 from novaugust/authenticate-ember-routes
Change `posts`, `post`, and `signout` routes to be `AuthenticatedRoute`s
This commit is contained in:
commit
b9c6a8bbcb
3 changed files with 11 additions and 6 deletions
|
@ -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 to first post subroute
|
||||||
redirect: function () {
|
redirect: function () {
|
||||||
var firstPost = (this.modelFor('posts') || []).get('firstObject');
|
var firstPost = (this.modelFor('posts') || []).get('firstObject');
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
var PostsPostRoute = Ember.Route.extend({
|
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
||||||
|
|
||||||
|
var PostsPostRoute = AuthenticatedRoute.extend({
|
||||||
model: function (params) {
|
model: function (params) {
|
||||||
var post = this.modelFor('posts').findBy('id', params.post_id);
|
var post = this.modelFor('posts').findBy('id', params.post_id);
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
import ajax from 'ghost/utils/ajax';
|
import ajax from 'ghost/utils/ajax';
|
||||||
import styleBody from 'ghost/mixins/style-body';
|
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'],
|
classNames: ['ghost-signout'],
|
||||||
|
|
||||||
beforeModel: function () {
|
beforeModel: function () {
|
||||||
|
|
Loading…
Add table
Reference in a new issue