diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2016-07-29 15:37:08 +0200 |
---|---|---|
committer | Bjoern Schiessle <bjoern@schiessle.org> | 2016-11-01 19:51:11 +0100 |
commit | 0a6f02801f333c17ca6455906bc816020883477d (patch) | |
tree | 790140cc6dd30d7ef9db50b281fca4769097119b /lib/private/Share | |
parent | ef467c3195731cb1e4fff504b39c06b017deb5ec (diff) | |
download | nextcloud-server-0a6f02801f333c17ca6455906bc816020883477d.tar.gz nextcloud-server-0a6f02801f333c17ca6455906bc816020883477d.zip |
introduce share by mail, ui part
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'lib/private/Share')
-rw-r--r-- | lib/private/Share/Constants.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Share/Constants.php b/lib/private/Share/Constants.php index 13a5a044e8a..f13f83f8ba9 100644 --- a/lib/private/Share/Constants.php +++ b/lib/private/Share/Constants.php @@ -29,9 +29,9 @@ class Constants { const SHARE_TYPE_USER = 0; const SHARE_TYPE_GROUP = 1; const SHARE_TYPE_LINK = 3; - const SHARE_TYPE_EMAIL = 4; // ToDo Check if it is still in use otherwise remove it + const SHARE_TYPE_EMAIL = 4; const SHARE_TYPE_CONTACT = 5; // ToDo Check if it is still in use otherwise remove it - const SHARE_TYPE_REMOTE = 6; // ToDo Check if it is still in use otherwise remove it + const SHARE_TYPE_REMOTE = 6; const FORMAT_NONE = -1; const FORMAT_STATUSES = -2; |