Project

General

Profile

1
import {Option} from "../../sharedComponents/input/input.component";
2

    
3
export class PortalUtils{
4

    
5
  portalTypes: Option[] = [
6
    {value: 'explore', label: 'Explore Portal'},
7
    {value: 'connect', label: 'Connect portal'},
8
    {value: 'monitor', label: 'Monitor portal'},
9
    {value: 'community', label: 'Community Gateway'},
10
    {value: 'funder', label: 'Funder Dashboard'},
11
    {value: 'ri', label: 'Research Initiative Dashboard'},
12
    {value: 'organization', label: 'Institution Dashboard'},
13
    {value: 'project', label: 'Project Dashboard'}
14
  ];
15

    
16
}
(1-1/5)