* added authenticate guard

* added metadata schema form, with the form model fields & validation and layout
* fixed the pagination for schemas and fields
* added reducer and actions for the registry state
This commit is contained in:
Samuel
2019-01-17 14:47:22 +01:00
parent 2d0ab6295a
commit 390966f30d
18 changed files with 329 additions and 44 deletions

View File

@@ -7,6 +7,7 @@ import { RouterModule } from '@angular/router';
import { TranslateModule } from '@ngx-translate/core';
import { BitstreamFormatsComponent } from './bitstream-formats/bitstream-formats.component';
import { SharedModule } from '../../shared/shared.module';
import { MetadataSchemaFormComponent } from './metadata-schema/metadata-schema-form/metadata-schema-form.component';
@NgModule({
imports: [
@@ -19,7 +20,8 @@ import { SharedModule } from '../../shared/shared.module';
declarations: [
MetadataRegistryComponent,
MetadataSchemaComponent,
BitstreamFormatsComponent
BitstreamFormatsComponent,
MetadataSchemaFormComponent
]
})
export class AdminRegistriesModule {