diff options
Diffstat (limited to 'client/src/app/+admin/admin.module.ts')
-rw-r--r-- | client/src/app/+admin/admin.module.ts | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/client/src/app/+admin/admin.module.ts b/client/src/app/+admin/admin.module.ts index 3c6b7a793..c0b006e73 100644 --- a/client/src/app/+admin/admin.module.ts +++ b/client/src/app/+admin/admin.module.ts | |||
@@ -5,6 +5,9 @@ import { AdminRoutingModule } from './admin-routing.module' | |||
5 | import { AdminComponent } from './admin.component' | 5 | import { AdminComponent } from './admin.component' |
6 | import { FollowersListComponent, FollowingAddComponent, FollowsComponent, FollowService } from './follows' | 6 | import { FollowersListComponent, FollowingAddComponent, FollowsComponent, FollowService } from './follows' |
7 | import { FollowingListComponent } from './follows/following-list/following-list.component' | 7 | import { FollowingListComponent } from './follows/following-list/following-list.component' |
8 | import { JobsComponent } from './jobs/job.component' | ||
9 | import { JobsListComponent } from './jobs/jobs-list/jobs-list.component' | ||
10 | import { JobService } from './jobs/shared/job.service' | ||
8 | import { UserAddComponent, UserListComponent, UsersComponent, UserService, UserUpdateComponent } from './users' | 11 | import { UserAddComponent, UserListComponent, UsersComponent, UserService, UserUpdateComponent } from './users' |
9 | import { VideoAbuseListComponent, VideoAbusesComponent } from './video-abuses' | 12 | import { VideoAbuseListComponent, VideoAbusesComponent } from './video-abuses' |
10 | import { VideoBlacklistComponent, VideoBlacklistListComponent } from './video-blacklist' | 13 | import { VideoBlacklistComponent, VideoBlacklistListComponent } from './video-blacklist' |
@@ -33,7 +36,10 @@ import { VideoBlacklistComponent, VideoBlacklistListComponent } from './video-bl | |||
33 | VideoBlacklistListComponent, | 36 | VideoBlacklistListComponent, |
34 | 37 | ||
35 | VideoAbusesComponent, | 38 | VideoAbusesComponent, |
36 | VideoAbuseListComponent | 39 | VideoAbuseListComponent, |
40 | |||
41 | JobsComponent, | ||
42 | JobsListComponent | ||
37 | ], | 43 | ], |
38 | 44 | ||
39 | exports: [ | 45 | exports: [ |
@@ -42,7 +48,8 @@ import { VideoBlacklistComponent, VideoBlacklistListComponent } from './video-bl | |||
42 | 48 | ||
43 | providers: [ | 49 | providers: [ |
44 | FollowService, | 50 | FollowService, |
45 | UserService | 51 | UserService, |
52 | JobService | ||
46 | ] | 53 | ] |
47 | }) | 54 | }) |
48 | export class AdminModule { } | 55 | export class AdminModule { } |