PeerTube/client/src/app/+admin/follows/follows.routes.ts

59 lines
1.4 KiB
TypeScript

import { Routes } from '@angular/router'
import { UserRightGuard } from '../../core'
import { FollowsComponent } from './follows.component'
import { FollowingAddComponent } from './following-add'
import { FollowersListComponent } from './followers-list'
import { UserRight } from '../../../../../shared'
import { FollowingListComponent } from './following-list/following-list.component'
import { VideoRedundanciesListComponent } from '@app/+admin/follows/video-redundancies-list'
export const FollowsRoutes: Routes = [
{
path: 'follows',
component: FollowsComponent,
canActivate: [ UserRightGuard ],
data: {
userRight: UserRight.MANAGE_SERVER_FOLLOW
},
children: [
{
path: '',
redirectTo: 'following-list',
pathMatch: 'full'
},
{
path: 'following-list',
component: FollowingListComponent,
data: {
meta: {
title: 'Following list'
}
}
},
{
path: 'followers-list',
component: FollowersListComponent,
data: {
meta: {
title: 'Followers list'
}
}
},
{
path: 'following-add',
component: FollowingAddComponent,
data: {
meta: {
title: 'Add follow'
}
}
},
{
path: 'video-redundancies-list',
component: VideoRedundanciesListComponent
}
]
}
]