Skip to content
Snippets Groups Projects
Commit 7292a986 authored by Daniel Calviño Sánchez's avatar Daniel Calviño Sánchez
Browse files

Add type for room shares


This type represents shares with a Nextcloud Talk conversation.

Signed-off-by: default avatarDaniel Calviño Sánchez <danxuliu@gmail.com>
parent 6b1ba9cd
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment