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:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2019-11-26 17:33:32 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2019-12-13 18:04:50 +0300
commita0dd6ef8bc0d8065cc3aea6b3bfbc678d33dba63 (patch)
tree28b0caec27809417f5b630ceac12072fdcac1fb7 /src/constants.js
parent8e042b537e5d1fdefe7ffa4985f8c49fab4f0bf5 (diff)
move mode constants to constants
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'src/constants.js')
-rw-r--r--src/constants.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/constants.js b/src/constants.js
index c3f83a623..6a56f20fd 100644
--- a/src/constants.js
+++ b/src/constants.js
@@ -71,3 +71,10 @@ export const SHARE = {
CIRCLE: 7,
},
}
+export const FLOW = {
+ MESSAGE_MODES: {
+ NO_MENTION: 1,
+ SELF_MENTION: 2,
+ ROOM_MENTION: 3,
+ },
+}