17 lines
555 B
TypeScript
17 lines
555 B
TypeScript
import {Option} from "../../sharedComponents/input/input.component";
|
|
|
|
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: 'Funder Dashboard'},
|
|
{value: 'ri', label: 'Research Initiative Dashboard'},
|
|
{value: 'organization', label: 'Institution Dashboard'},
|
|
{value: 'project', label: 'Project Dashboard'}
|
|
];
|
|
|
|
}
|