Merge branch 'feature/redirect-root-by-login-or-not' into 'develop'
Redirect root by login ro not login See merge request pleroma/pleroma-fe!251
This commit is contained in:
commit
805410b933
2 changed files with 9 additions and 2 deletions
|
@ -98,7 +98,13 @@ window.fetch('/static/config.json')
|
|||
}
|
||||
|
||||
const routes = [
|
||||
{ name: 'root', path: '/', redirect: data['defaultPath'] || '/main/all' },
|
||||
{ name: 'root',
|
||||
path: '/',
|
||||
redirect: to => {
|
||||
var redirectRootLogin = data['redirectRootLogin']
|
||||
var redirectRootNoLogin = data['redirectRootNoLogin']
|
||||
return (store.state.users.currentUser ? redirectRootLogin : redirectRootNoLogin) || '/main/all'
|
||||
}},
|
||||
{ path: '/main/all', component: PublicAndExternalTimeline },
|
||||
{ path: '/main/public', component: PublicTimeline },
|
||||
{ path: '/main/friends', component: FriendsTimeline },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue