aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+page-not-found/page-not-found.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-05-31 11:35:01 +0200
committerChocobozzz <me@florianbigard.com>2018-05-31 14:24:13 +0200
commita51bad1accfade25916db0dadaeb879a182cf19b (patch)
tree128330863a1125be437cf8ba9bc0c6c529068520 /client/src/app/+page-not-found/page-not-found.module.ts
parent351d5225d6a4fe6863f760f02454eac88f730607 (diff)
downloadPeerTube-a51bad1accfade25916db0dadaeb879a182cf19b.tar.gz
PeerTube-a51bad1accfade25916db0dadaeb879a182cf19b.tar.zst
PeerTube-a51bad1accfade25916db0dadaeb879a182cf19b.zip
Add 404 page
Diffstat (limited to 'client/src/app/+page-not-found/page-not-found.module.ts')
-rw-r--r--client/src/app/+page-not-found/page-not-found.module.ts22
1 files changed, 22 insertions, 0 deletions
diff --git a/client/src/app/+page-not-found/page-not-found.module.ts b/client/src/app/+page-not-found/page-not-found.module.ts
new file mode 100644
index 000000000..bc29d17c4
--- /dev/null
+++ b/client/src/app/+page-not-found/page-not-found.module.ts
@@ -0,0 +1,22 @@
1import { NgModule } from '@angular/core'
2import { SharedModule } from '../shared'
3import { PageNotFoundComponent } from '@app/+page-not-found/page-not-found.component'
4import { PageNotFoundRoutingModule } from '@app/+page-not-found/page-not-found-routing.module'
5
6@NgModule({
7 imports: [
8 PageNotFoundRoutingModule,
9 SharedModule
10 ],
11
12 declarations: [
13 PageNotFoundComponent,
14 ],
15
16 exports: [
17 PageNotFoundComponent
18 ],
19
20 providers: []
21})
22export class PageNotFoundModule { }