summaryrefslogtreecommitdiff
path: root/src/util/authorizations.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/authorizations.js')
-rw-r--r--src/util/authorizations.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/util/authorizations.js b/src/util/authorizations.js
new file mode 100644
index 00000000..9a7d4e36
--- /dev/null
+++ b/src/util/authorizations.js
@@ -0,0 +1,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",
+};