mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 06:50:36 +08:00
Clean up route definition code style
This commit is contained in:
parent
e863bd53d3
commit
d71d8f59c2
|
@ -11,20 +11,20 @@ import NotificationsPage from 'flarum/components/NotificationsPage';
|
||||||
*/
|
*/
|
||||||
export default function(app) {
|
export default function(app) {
|
||||||
app.routes = {
|
app.routes = {
|
||||||
'index': { path: '/', component: IndexPage.component() },
|
'index': {path: '/', component: IndexPage.component()},
|
||||||
'index.filter': { path: '/:filter', component: IndexPage.component() },
|
'index.filter': {path: '/:filter', component: IndexPage.component()},
|
||||||
|
|
||||||
'discussion.id': { path: '/d/:id', component: DiscussionPage.component() },
|
'discussion.id': {path: '/d/:id', component: DiscussionPage.component()},
|
||||||
'discussion': { path: '/d/:id/:slug', component: DiscussionPage.component() },
|
'discussion': {path: '/d/:id/:slug', component: DiscussionPage.component()},
|
||||||
'discussion.near': { path: '/d/:id/:slug/:near', component: DiscussionPage.component() },
|
'discussion.near': {path: '/d/:id/:slug/:near', component: DiscussionPage.component()},
|
||||||
|
|
||||||
'user': { path: '/u/:username', component: ActivityPage.component() },
|
'user': {path: '/u/:username', component: ActivityPage.component()},
|
||||||
'user.activity': { path: '/u/:username', component: ActivityPage.component() },
|
'user.activity': {path: '/u/:username', component: ActivityPage.component()},
|
||||||
'user.discussions': { path: '/u/:username/discussions', component: ActivityPage.component({filter: 'startedDiscussion'}) },
|
'user.discussions': {path: '/u/:username/discussions', component: ActivityPage.component({filter: 'startedDiscussion'})},
|
||||||
'user.posts': { path: '/u/:username/posts', component: ActivityPage.component({filter: 'posted'}) },
|
'user.posts': {path: '/u/:username/posts', component: ActivityPage.component({filter: 'posted'})},
|
||||||
|
|
||||||
'settings': { path: '/settings', component: SettingsPage.component() },
|
'settings': {path: '/settings', component: SettingsPage.component()},
|
||||||
'notifications': { path: '/notifications', component: NotificationsPage.component() }
|
'notifications': {path: '/notifications', component: NotificationsPage.component()}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue
Block a user