blob: 1825ce2789c9ea767d55506ce7b6f9f7194bd3ac (
plain) (
tree)
|
|
import { Routes } from '@angular/router'
import { VideoRedundanciesListComponent } from '@app/+admin/follows/video-redundancies-list'
import { UserRightGuard } from '@app/core'
import { UserRight } from '@shared/models'
import { FollowersListComponent } from './followers-list'
import { FollowingListComponent } from './following-list/following-list.component'
export const FollowsRoutes: Routes = [
{
path: 'follows',
canActivate: [ UserRightGuard ],
data: {
userRight: UserRight.MANAGE_SERVER_FOLLOW
},
children: [
{
path: '',
redirectTo: 'following-list',
pathMatch: 'full'
},
{
path: 'following-list',
component: FollowingListComponent,
data: {
meta: {
title: $localize`Following`
}
}
},
{
path: 'followers-list',
component: FollowersListComponent,
data: {
meta: {
title: $localize`Followers`
}
}
},
{
path: 'following-add',
redirectTo: 'following-list'
},
{
path: 'video-redundancies-list',
component: VideoRedundanciesListComponent
}
]
}
]
|