diff --git a/apps/red-ui/src/app/app.module.ts b/apps/red-ui/src/app/app.module.ts
index 985274066..c08d7f733 100644
--- a/apps/red-ui/src/app/app.module.ts
+++ b/apps/red-ui/src/app/app.module.ts
@@ -83,6 +83,7 @@ import { IconButtonComponent } from './components/buttons/icon-button/icon-butto
import { UserButtonComponent } from './components/buttons/user-button/user-button.component';
import { CircleButtonComponent } from './components/buttons/circle-button/circle-button.component';
import { ChevronButtonComponent } from './components/buttons/chevron-button/chevron-button.component';
+import { DictionaryListingScreenComponent } from './screens/admin/dictionary-listing-screen/dictionary-listing-screen.component';
export function HttpLoaderFactory(httpClient: HttpClient) {
return new TranslateHttpLoader(httpClient, '/assets/i18n/', '.json');
@@ -133,7 +134,8 @@ export function HttpLoaderFactory(httpClient: HttpClient) {
IconButtonComponent,
UserButtonComponent,
CircleButtonComponent,
- ChevronButtonComponent
+ ChevronButtonComponent,
+ DictionaryListingScreenComponent
],
imports: [
BrowserModule,
@@ -195,6 +197,14 @@ export function HttpLoaderFactory(httpClient: HttpClient) {
data: {
routeGuards: [AuthGuard, RedRoleGuard, AppStateGuard]
}
+ },
+ {
+ path: 'admin-dictionaries',
+ component: DictionaryListingScreenComponent,
+ canActivate: [CompositeRouteGuard],
+ data: {
+ routeGuards: [AuthGuard, RedRoleGuard, AppStateGuard]
+ }
}
]
}
diff --git a/apps/red-ui/src/app/icons/icons.module.ts b/apps/red-ui/src/app/icons/icons.module.ts
index 5b1563a6e..6cdb35fd1 100644
--- a/apps/red-ui/src/app/icons/icons.module.ts
+++ b/apps/red-ui/src/app/icons/icons.module.ts
@@ -50,7 +50,8 @@ export class IconsModule {
'check-alt',
'page',
'upload',
- 'undo'
+ 'undo',
+ 'under-construction'
];
for (const icon of icons) {
diff --git a/apps/red-ui/src/app/screens/admin/dictionary-listing-screen/dictionary-listing-screen.component.html b/apps/red-ui/src/app/screens/admin/dictionary-listing-screen/dictionary-listing-screen.component.html
new file mode 100644
index 000000000..7b2b46b92
--- /dev/null
+++ b/apps/red-ui/src/app/screens/admin/dictionary-listing-screen/dictionary-listing-screen.component.html
@@ -0,0 +1,4 @@
+Under Construction
+