Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-12-04 13:58:40 +0300
committerJoas Schilling <coding@schilljs.com>2020-12-10 13:47:04 +0300
commit11e8e28b87467954546ed5c5acf7ad78b38ec8f3 (patch)
tree66c29de975c913aa8e25f9b86f4fa347e24b7d7c /src/constants.js
parent4ebae32362d081c144717c58d4549e22aabb683e (diff)
Interact with integers so we can match it better in queries
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/constants.js')
-rw-r--r--src/constants.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/constants.js b/src/constants.js
index 6beaaa2e2..121eafb3d 100644
--- a/src/constants.js
+++ b/src/constants.js
@@ -97,6 +97,6 @@ export const FLOW = {
},
}
export const PRIVACY = {
- PRIVATE: 'private',
- PUBLIC: 'public',
+ PUBLIC: 0,
+ PRIVATE: 1,
}