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


                                                                                            
                                                         




                                                                                  

                                    
                                               











                                          
                                       







                                          
                                       




                              
                                    


                                        





                                                  



       
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,
        data: {
          meta: {
            title: $localize`Redundancy`
          }
        }
      }
    ]
  }
]