1
0
mirror of https://github.com/flarum/core.git synced 2025-07-30 21:20:24 +02:00

Hello world!

This commit is contained in:
Toby Zerner
2014-12-20 16:56:46 +10:30
commit 74db323f83
279 changed files with 11954 additions and 0 deletions

24
ember/app/router.js Normal file
View File

@@ -0,0 +1,24 @@
import Ember from 'ember';
var Router = Ember.Router.extend({
location: FlarumENV.locationType
});
Router.map(function() {
this.resource('categories', { path: '/categories' });
this.resource('discussions', { path: '/' }, function() {
this.resource('discussion', { path: '/:id/:slug' });
});
this.resource('user', { path: '/user/:username' }, function() {
this.route('activity');
this.route('posts');
this.route('discussions');
this.route('preferences');
});
});
export default Router;