summaryrefslogtreecommitdiff
path: root/src/util/authorizations.js
blob: 9a7d4e36dc74a5f491796368d3f7439b3a8f0ef7 (plain)
1
2
3
4
5
6
7
8
9
10
11
export const AUTH_ICON_MAP = {
    "OWN": "home",
    "EDIT": "pencil",
    "VIEW": "eye",
};

export const AUTH_DESCRIPTION_MAP = {
    "OWN": "Own",
    "EDIT": "Can Edit",
    "VIEW": "Can View",
};