diff options
author | Chocobozzz <me@florianbigard.com> | 2021-10-29 11:33:28 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-10-29 11:52:58 +0200 |
commit | eeae81428e933b923dc9d9b6c9ce5c9fcf0de1a7 (patch) | |
tree | 0c444d0c13df141ec7095fc141997a2b847c31d8 /client/src/app/+admin/system | |
parent | 3c10840fa90fc88fc98e8169faf4745ff6c80893 (diff) | |
download | PeerTube-eeae81428e933b923dc9d9b6c9ce5c9fcf0de1a7.tar.gz PeerTube-eeae81428e933b923dc9d9b6c9ce5c9fcf0de1a7.tar.zst PeerTube-eeae81428e933b923dc9d9b6c9ce5c9fcf0de1a7.zip |
Remove useless components
Diffstat (limited to 'client/src/app/+admin/system')
-rw-r--r-- | client/src/app/+admin/system/index.ts | 1 | ||||
-rw-r--r-- | client/src/app/+admin/system/jobs/jobs.component.scss | 4 | ||||
-rw-r--r-- | client/src/app/+admin/system/system.component.html | 1 | ||||
-rw-r--r-- | client/src/app/+admin/system/system.component.ts | 8 | ||||
-rw-r--r-- | client/src/app/+admin/system/system.routes.ts | 2 |
5 files changed, 0 insertions, 16 deletions
diff --git a/client/src/app/+admin/system/index.ts b/client/src/app/+admin/system/index.ts index 8cced0cdb..b398832cc 100644 --- a/client/src/app/+admin/system/index.ts +++ b/client/src/app/+admin/system/index.ts | |||
@@ -1,5 +1,4 @@ | |||
1 | export * from './debug' | 1 | export * from './debug' |
2 | export * from './jobs' | 2 | export * from './jobs' |
3 | export * from './logs' | 3 | export * from './logs' |
4 | export * from './system.component' | ||
5 | export * from './system.routes' | 4 | export * from './system.routes' |
diff --git a/client/src/app/+admin/system/jobs/jobs.component.scss b/client/src/app/+admin/system/jobs/jobs.component.scss index 4d564f4b7..eadaf7904 100644 --- a/client/src/app/+admin/system/jobs/jobs.component.scss +++ b/client/src/app/+admin/system/jobs/jobs.component.scss | |||
@@ -55,7 +55,3 @@ pre { | |||
55 | .job-error { | 55 | .job-error { |
56 | color: #ff0000; | 56 | color: #ff0000; |
57 | } | 57 | } |
58 | |||
59 | .badge { | ||
60 | @include table-badge; | ||
61 | } | ||
diff --git a/client/src/app/+admin/system/system.component.html b/client/src/app/+admin/system/system.component.html deleted file mode 100644 index 0680b43f9..000000000 --- a/client/src/app/+admin/system/system.component.html +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | <router-outlet></router-outlet> | ||
diff --git a/client/src/app/+admin/system/system.component.ts b/client/src/app/+admin/system/system.component.ts deleted file mode 100644 index b63160b86..000000000 --- a/client/src/app/+admin/system/system.component.ts +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | import { Component } from '@angular/core' | ||
2 | |||
3 | @Component({ | ||
4 | templateUrl: './system.component.html', | ||
5 | styleUrls: [] | ||
6 | }) | ||
7 | export class SystemComponent { | ||
8 | } | ||
diff --git a/client/src/app/+admin/system/system.routes.ts b/client/src/app/+admin/system/system.routes.ts index 72ab6705a..d180aa3b9 100644 --- a/client/src/app/+admin/system/system.routes.ts +++ b/client/src/app/+admin/system/system.routes.ts | |||
@@ -4,12 +4,10 @@ import { UserRight } from '@shared/models' | |||
4 | import { DebugComponent } from './debug' | 4 | import { DebugComponent } from './debug' |
5 | import { JobsComponent } from './jobs/jobs.component' | 5 | import { JobsComponent } from './jobs/jobs.component' |
6 | import { LogsComponent } from './logs' | 6 | import { LogsComponent } from './logs' |
7 | import { SystemComponent } from './system.component' | ||
8 | 7 | ||
9 | export const SystemRoutes: Routes = [ | 8 | export const SystemRoutes: Routes = [ |
10 | { | 9 | { |
11 | path: 'system', | 10 | path: 'system', |
12 | component: SystemComponent, | ||
13 | children: [ | 11 | children: [ |
14 | { | 12 | { |
15 | path: '', | 13 | path: '', |