mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
10 lines
192 B
JavaScript
10 lines
192 B
JavaScript
|
/*global App */
|
||
|
|
||
|
App.Router.map(function () {
|
||
|
'use strict';
|
||
|
this.resource('posts');
|
||
|
this.resource('post', {path: 'post/:id'}, function () {
|
||
|
this.route('edit');
|
||
|
});
|
||
|
});
|