mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
23 lines
348 B
JavaScript
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')
|
|
});
|
|
|
|
});
|