mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 23:13:04 +00:00
37 lines
1.4 KiB
TypeScript
37 lines
1.4 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { SharedModule } from '../../shared/shared.module';
|
|
import { EditCommunityPageRoutingModule } from './edit-community-page.routing.module';
|
|
import { EditCommunityPageComponent } from './edit-community-page.component';
|
|
import { CommunityCurateComponent } from './community-curate/community-curate.component';
|
|
import { CommunityMetadataComponent } from './community-metadata/community-metadata.component';
|
|
import { CommunityRolesComponent } from './community-roles/community-roles.component';
|
|
import { CommunityAuthorizationsComponent } from './community-authorizations/community-authorizations.component';
|
|
import { CommunityFormModule } from '../community-form/community-form.module';
|
|
import { ResourcePoliciesModule } from '../../shared/resource-policies/resource-policies.module';
|
|
import { ComcolModule } from '../../shared/comcol/comcol.module';
|
|
|
|
/**
|
|
* Module that contains all components related to the Edit Community page administrator functionality
|
|
*/
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
SharedModule,
|
|
EditCommunityPageRoutingModule,
|
|
CommunityFormModule,
|
|
ComcolModule,
|
|
ResourcePoliciesModule,
|
|
],
|
|
declarations: [
|
|
EditCommunityPageComponent,
|
|
CommunityCurateComponent,
|
|
CommunityMetadataComponent,
|
|
CommunityRolesComponent,
|
|
CommunityAuthorizationsComponent
|
|
]
|
|
})
|
|
export class EditCommunityPageModule {
|
|
|
|
}
|