Vulcan/lib/router/admin.js
2015-03-28 18:38:20 +09:00

23 lines
348 B
JavaScript

AdminController = RouteController.extend({
template: "adminWrapper"
});
Meteor.startup(function (){
// Loading (for testing purposes)
Router.route('/loading', {
name: 'loading',
template: getTemplate('loading')
});
// Toolbox
Router.route('/toolbox', {
name: 'toolbox',
template: getTemplate('toolbox')
});
});