Add type for room shares
This type represents shares with a Nextcloud Talk conversation. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
parent
6b1ba9cdaf
commit
7292a986a0
|
@ -12,6 +12,7 @@ OC.Share = _.extend(OC.Share || {}, {
|
|||
SHARE_TYPE_CIRCLE:7,
|
||||
SHARE_TYPE_GUEST:8,
|
||||
SHARE_TYPE_REMOTE_GROUP:9,
|
||||
SHARE_TYPE_ROOM:10,
|
||||
|
||||
/**
|
||||
* Regular expression for splitting parts of remote share owners:
|
||||
|
|
|
@ -38,6 +38,7 @@ class Constants {
|
|||
const SHARE_TYPE_CIRCLE = 7;
|
||||
const SHARE_TYPE_GUEST = 8;
|
||||
const SHARE_TYPE_REMOTE_GROUP = 9;
|
||||
const SHARE_TYPE_ROOM = 10;
|
||||
|
||||
const FORMAT_NONE = -1;
|
||||
const FORMAT_STATUSES = -2;
|
||||
|
|
Loading…
Reference in New Issue