X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bmy-account%2Fmy-account-routing.module.ts;h=f44b60ec989eb1b94d47236147caf8b01c217eac;hb=2bc9bd08cd121bdffbf56a0241c4decfb77bfdd5;hp=a2cbeaffc2b9e24719b4f692127eb2a1a125f54e;hpb=80bfd33c0bf910e2cfdd3270b14ba9eddd90e2e8;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+my-account/my-account-routing.module.ts b/client/src/app/+my-account/my-account-routing.module.ts index a2cbeaffc..f44b60ec9 100644 --- a/client/src/app/+my-account/my-account-routing.module.ts +++ b/client/src/app/+my-account/my-account-routing.module.ts @@ -5,15 +5,23 @@ import { LoginGuard } from '../core' import { MyAccountComponent } from './my-account.component' import { MyAccountSettingsComponent } from './my-account-settings/my-account-settings.component' import { MyAccountVideosComponent } from './my-account-videos/my-account-videos.component' -import { MyAccountVideoChannelsComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channels.component' -import { MyAccountVideoChannelCreateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-create.component' -import { MyAccountVideoChannelUpdateComponent } from '@app/+my-account/my-account-video-channels/my-account-video-channel-update.component' import { MyAccountVideoImportsComponent } from '@app/+my-account/my-account-video-imports/my-account-video-imports.component' import { MyAccountSubscriptionsComponent } from '@app/+my-account/my-account-subscriptions/my-account-subscriptions.component' import { MyAccountOwnershipComponent } from '@app/+my-account/my-account-ownership/my-account-ownership.component' import { MyAccountBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-blocklist.component' import { MyAccountServerBlocklistComponent } from '@app/+my-account/my-account-blocklist/my-account-server-blocklist.component' import { MyAccountHistoryComponent } from '@app/+my-account/my-account-history/my-account-history.component' +import { MyAccountNotificationsComponent } from '@app/+my-account/my-account-notifications/my-account-notifications.component' +import { MyAccountVideoPlaylistsComponent } from '@app/+my-account/my-account-video-playlists/my-account-video-playlists.component' +import { + MyAccountVideoPlaylistCreateComponent +} from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-create.component' +import { + MyAccountVideoPlaylistUpdateComponent +} from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component' +import { + MyAccountVideoPlaylistElementsComponent +} from '@app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component' const myAccountRoutes: Routes = [ { @@ -35,39 +43,59 @@ const myAccountRoutes: Routes = [ } } }, + { path: 'video-channels', - component: MyAccountVideoChannelsComponent, + loadChildren: () => import('./my-account-video-channels/my-account-video-channels.module').then(m => m.MyAccountVideoChannelsModule) + }, + + { + path: 'video-playlists', + component: MyAccountVideoPlaylistsComponent, data: { meta: { - title: 'Account video channels' + title: 'Account playlists' } } }, { - path: 'video-channels/create', - component: MyAccountVideoChannelCreateComponent, + path: 'video-playlists/create', + component: MyAccountVideoPlaylistCreateComponent, data: { meta: { - title: 'Create new video channel' + title: 'Create new playlist' } } }, { - path: 'video-channels/update/:videoChannelId', - component: MyAccountVideoChannelUpdateComponent, + path: 'video-playlists/:videoPlaylistId', + component: MyAccountVideoPlaylistElementsComponent, data: { meta: { - title: 'Update video channel' + title: 'Playlist elements' } } }, + { + path: 'video-playlists/update/:videoPlaylistId', + component: MyAccountVideoPlaylistUpdateComponent, + data: { + meta: { + title: 'Update playlist' + } + } + }, + { path: 'videos', component: MyAccountVideosComponent, data: { meta: { title: 'Account videos' + }, + reuse: { + enabled: true, + key: 'my-account-videos-list' } } }, @@ -122,6 +150,19 @@ const myAccountRoutes: Routes = [ data: { meta: { title: 'Videos history' + }, + reuse: { + enabled: true, + key: 'my-videos-history-list' + } + } + }, + { + path: 'notifications', + component: MyAccountNotificationsComponent, + data: { + meta: { + title: 'Notifications' } } }