18 lines
703 B
TypeScript
18 lines
703 B
TypeScript
import {Option} from "../../sharedComponents/input/input.component";
|
|
import {StakeholderEntities} from "../../monitor/entities/stakeholder";
|
|
|
|
export class PortalUtils{
|
|
|
|
portalTypes: Option[] = [
|
|
{value: 'explore', label: 'Explore Portal'},
|
|
{value: 'connect', label: 'Connect portal'},
|
|
{value: 'monitor', label: 'Monitor portal'},
|
|
{value: 'community', label: 'Community Gateway'},
|
|
{value: 'funder', label: StakeholderEntities.FUNDER + ' Dashboard'},
|
|
{value: 'ri', label: StakeholderEntities.RI + ' Dashboard'},
|
|
{value: 'organization', label: StakeholderEntities.ORGANIZATION + ' Dashboard'},
|
|
{value: 'project', label: StakeholderEntities.PROJECT + ' Dashboard'}
|
|
];
|
|
|
|
}
|