blob: 6cb08ba8abe63304b4340bf1a4af7812d314e0d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import HomeIcon from '@patternfly/react-icons/dist/js/icons/home-icon'
import EditIcon from '@patternfly/react-icons/dist/js/icons/edit-icon'
import EyeIcon from '@patternfly/react-icons/dist/js/icons/eye-icon'
export const AUTH_ICON_MAP = {
OWNER: HomeIcon,
EDITOR: EditIcon,
VIEWER: EyeIcon,
}
export const AUTH_NAME_MAP = {
OWNER: 'Owner',
EDITOR: 'Editor',
VIEWER: 'Viewer',
}
export const AUTH_DESCRIPTION_MAP = {
OWNER: 'You own this project',
EDITOR: 'You can edit this project',
VIEWER: 'You can view this project',
}
|