summaryrefslogtreecommitdiffstats
path: root/src/constants.js
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-11-07 17:16:17 +0100
committerJoas Schilling <coding@schilljs.com>2019-11-07 17:16:17 +0100
commitca27598057b90c1f2aa7ea8e4d5fb7a109553e18 (patch)
treea885bdab2967206e40987b092da53ad1a0940ced /src/constants.js
parentd60e8cfcbf8130d68ff8a99208fb7c8671464a03 (diff)
Fix broken share types
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/constants.js')
-rw-r--r--src/constants.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/constants.js b/src/constants.js
index 0638bec57..c3f83a623 100644
--- a/src/constants.js
+++ b/src/constants.js
@@ -62,3 +62,12 @@ export const WEBINAR = {
NON_MODERATORS: 1,
},
}
+export const SHARE = {
+ TYPE: {
+ USER: 0,
+ GROUP: 1,
+ EMAIL: 4,
+ REMOTE: 6,
+ CIRCLE: 7,
+ },
+}