aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+accounts/accounts-routing.module.ts
blob: d80df2293e5e19b6b600b24a1e9ec576b28e94ea (plain) (tree)
1
2
3
4
5
6
7
8

                                                      


                                                                                                         
 
                                
   



                               
                       
                                 


                 
                                     


                         








                                                    



                                          
                                            



                                      


           

                            
       
                       
                            





           
                                                     

                           
                                     
import { NgModule } from '@angular/core'
import { RouterModule, Routes } from '@angular/router'
import { AccountVideoChannelsComponent } from './account-video-channels/account-video-channels.component'
import { AccountVideosComponent } from './account-videos/account-videos.component'
import { AccountsComponent } from './accounts.component'

const accountsRoutes: Routes = [
  {
    path: 'peertube',
    redirectTo: '/videos/local'
  },
  {
    path: ':accountId',
    component: AccountsComponent,
    children: [
      {
        path: '',
        redirectTo: 'video-channels',
        pathMatch: 'full'
      },
      {
        path: 'video-channels',
        component: AccountVideoChannelsComponent,
        data: {
          meta: {
            title: $localize`Account video channels`
          }
        }
      },
      {
        path: 'videos',
        component: AccountVideosComponent,
        data: {
          meta: {
            title: $localize`Account videos`
          },
          reuse: {
            enabled: true,
            key: 'account-videos-list'
          }
        }
      },

      // Old URL redirection
      {
        path: 'search',
        redirectTo: 'videos'
      }
    ]
  }
]

@NgModule({
  imports: [ RouterModule.forChild(accountsRoutes) ],
  exports: [ RouterModule ]
})
export class AccountsRoutingModule {}