aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+account/account.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-04-25 16:56:13 +0200
committerChocobozzz <me@florianbigard.com>2018-04-25 16:56:13 +0200
commit170726f523ff48f89da45473fc53ca54784f43dd (patch)
treef9f783ebdfc934c6831396c2bf33f658d6640583 /client/src/app/+account/account.module.ts
parentcc918ac3f45e32f031cce7b6e0473e5c2c34b8ae (diff)
downloadPeerTube-170726f523ff48f89da45473fc53ca54784f43dd.tar.gz
PeerTube-170726f523ff48f89da45473fc53ca54784f43dd.tar.zst
PeerTube-170726f523ff48f89da45473fc53ca54784f43dd.zip
Implement video channel views
Diffstat (limited to 'client/src/app/+account/account.module.ts')
-rw-r--r--client/src/app/+account/account.module.ts28
1 files changed, 0 insertions, 28 deletions
diff --git a/client/src/app/+account/account.module.ts b/client/src/app/+account/account.module.ts
deleted file mode 100644
index 82ef06e76..000000000
--- a/client/src/app/+account/account.module.ts
+++ /dev/null
@@ -1,28 +0,0 @@
1import { NgModule } from '@angular/core'
2import { SharedModule } from '../shared'
3import { AccountRoutingModule } from './account-routing.module'
4import { AccountComponent } from './account.component'
5import { AccountVideosComponent } from './account-videos/account-videos.component'
6import { AccountAboutComponent } from './account-about/account-about.component'
7import { AccountVideoChannelsComponent } from './account-video-channels/account-video-channels.component'
8
9@NgModule({
10 imports: [
11 AccountRoutingModule,
12 SharedModule
13 ],
14
15 declarations: [
16 AccountComponent,
17 AccountVideosComponent,
18 AccountVideoChannelsComponent,
19 AccountAboutComponent
20 ],
21
22 exports: [
23 AccountComponent
24 ],
25
26 providers: []
27})
28export class AccountModule { }