0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00
ghost/core/client/router.js

10 lines
192 B
JavaScript
Raw Normal View History

/*global App */
App.Router.map(function () {
'use strict';
this.resource('posts');
this.resource('post', {path: 'post/:id'}, function () {
this.route('edit');
});
});