2020-11-12 18:57:32 +01:00
|
|
|
import {Option} from "../../sharedComponents/input/input.component";
|
2022-06-09 09:38:06 +02:00
|
|
|
import {StakeholderEntities} from "../../monitor/entities/stakeholder";
|
2020-10-30 15:01:44 +01:00
|
|
|
|
|
|
|
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'},
|
2022-06-09 09:38:06 +02:00
|
|
|
{value: 'funder', label: StakeholderEntities.FUNDER + ' Dashboard'},
|
|
|
|
{value: 'ri', label: StakeholderEntities.RI + ' Dashboard'},
|
|
|
|
{value: 'organization', label: StakeholderEntities.ORGANIZATION + ' Dashboard'},
|
|
|
|
{value: 'project', label: StakeholderEntities.PROJECT + ' Dashboard'}
|
2020-10-30 15:01:44 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
}
|