mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
32 lines
1.0 KiB
TypeScript
32 lines
1.0 KiB
TypeScript
import { Component } from '@angular/core';
|
|
import { Community } from '../../core/shared/community.model';
|
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
import { EditComColPageComponent } from '../../shared/comcol-forms/edit-comcol-page/edit-comcol-page.component';
|
|
import { getCommunityPageRoute } from '../community-page-routing.module';
|
|
|
|
/**
|
|
* Component that represents the page where a user can edit an existing Community
|
|
*/
|
|
@Component({
|
|
selector: 'ds-edit-community',
|
|
templateUrl: '../../shared/comcol-forms/edit-comcol-page/edit-comcol-page.component.html'
|
|
})
|
|
export class EditCommunityPageComponent extends EditComColPageComponent<Community> {
|
|
type = 'community';
|
|
|
|
public constructor(
|
|
protected router: Router,
|
|
protected route: ActivatedRoute
|
|
) {
|
|
super(router, route);
|
|
}
|
|
|
|
/**
|
|
* Get the community page url
|
|
* @param community The community for which the url is requested
|
|
*/
|
|
getPageUrl(community: Community): string {
|
|
return getCommunityPageRoute(community.id)
|
|
}
|
|
}
|