summaryrefslogtreecommitdiffstats
path: root/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue40
1 files changed, 30 insertions, 10 deletions
diff --git a/src/App.vue b/src/App.vue
index efe135dc..e28879c0 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -89,13 +89,23 @@ export default {
{
id: 'social-timeline',
classes: [],
- icon: 'icon-category-monitoring',
- text: t('social', 'Timeline'),
+ icon: 'icon-home',
+ text: t('social', 'Home'),
router: {
name: 'timeline'
}
},
{
+ id: 'social-direct-messages',
+ classes: [],
+ router: {
+ name: 'timeline',
+ params: { type: 'direct' }
+ },
+ icon: 'icon-comment',
+ text: t('social', 'Direct messages')
+ },
+ {
id: 'social-account',
classes: [],
icon: 'icon-user',
@@ -106,18 +116,28 @@ export default {
}
},
{
- id: 'social-favorites',
+ id: 'social-spacer',
+ classes: []
+ },
+ {
+ id: 'social-timeline',
classes: [],
- href: '#',
- icon: 'icon-favorite',
- text: t('social', 'Favorites')
+ icon: 'icon-category-monitoring',
+ text: t('social', 'Local timeline'),
+ router: {
+ name: 'timeline',
+ params: { type: 'local' }
+ }
},
{
- id: 'social-direct-messages',
+ id: 'social-timeline',
classes: [],
- href: '#',
- icon: 'icon-comment',
- text: t('social', 'Direct messages')
+ icon: 'icon-link',
+ text: t('social', 'Global timeline'),
+ router: {
+ name: 'timeline',
+ params: { type: 'global' }
+ }
}
]
return {