mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
36 lines
1.6 KiB
TypeScript
36 lines
1.6 KiB
TypeScript
import { Component } from '@angular/core';
|
|
import { Community } from '../../core/shared/community.model';
|
|
import { CommunityDataService } from '../../core/data/community-data.service';
|
|
import { RouteService } from '../../core/services/route.service';
|
|
import { Router } from '@angular/router';
|
|
import { CreateComColPageComponent } from '../../shared/comcol/comcol-forms/create-comcol-page/create-comcol-page.component';
|
|
import { NotificationsService } from '../../shared/notifications/notifications.service';
|
|
import { TranslateService } from '@ngx-translate/core';
|
|
import { RequestService } from '../../core/data/request.service';
|
|
import { DSONameService } from '../../core/breadcrumbs/dso-name.service';
|
|
|
|
/**
|
|
* Component that represents the page where a user can create a new Community
|
|
*/
|
|
@Component({
|
|
selector: 'ds-create-community',
|
|
styleUrls: ['./create-community-page.component.scss'],
|
|
templateUrl: './create-community-page.component.html'
|
|
})
|
|
export class CreateCommunityPageComponent extends CreateComColPageComponent<Community> {
|
|
protected frontendURL = '/communities/';
|
|
protected type = Community.type;
|
|
|
|
public constructor(
|
|
protected communityDataService: CommunityDataService,
|
|
public dsoNameService: DSONameService,
|
|
protected routeService: RouteService,
|
|
protected router: Router,
|
|
protected notificationsService: NotificationsService,
|
|
protected translate: TranslateService,
|
|
protected requestService: RequestService
|
|
) {
|
|
super(communityDataService, dsoNameService, communityDataService, routeService, router, notificationsService, translate, requestService);
|
|
}
|
|
}
|