aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+admin/follows/follows.routes.ts
blob: cd70daf77dc439dfa740c45dd8561c3b9df6d124 (plain) (tree)
1
2
3
4
5
6
7
                                        


                                                                                            
                                                         
                                                                                  
                                                      






                                      
                                               











                                          
                                            







                                          
                                            




                              
                                    



                                                 



       
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'
import { FollowsComponent } from './follows.component'

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: $localize`Following list`
          }
        }
      },
      {
        path: 'followers-list',
        component: FollowersListComponent,
        data: {
          meta: {
            title: $localize`Followers list`
          }
        }
      },
      {
        path: 'following-add',
        redirectTo: 'following-list'
      },
      {
        path: 'video-redundancies-list',
        component: VideoRedundanciesListComponent
      }
    ]
  }
]