diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2020-02-21 17:47:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-21 17:47:53 +0100 |
commit | dd9d4696f2b50153d9dde297ee9efffd220f1f48 (patch) | |
tree | 36110c4f758a009914827ad4e99f56330809f556 /lib/public | |
parent | b7bfe2b34d154814053450141300b4f97cf0651f (diff) | |
parent | 6235175b6dba4ab416db60a21559a69db2defa83 (diff) | |
download | nextcloud-server-dd9d4696f2b50153d9dde297ee9efffd220f1f48.tar.gz nextcloud-server-dd9d4696f2b50153d9dde297ee9efffd220f1f48.zip |
Merge pull request #19412 from nextcloud/fix/19404/make-favorite-public
Make TAG_FAVORITE public
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/ITags.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/public/ITags.php b/lib/public/ITags.php index 27b274f4dd6..35469f4f804 100644 --- a/lib/public/ITags.php +++ b/lib/public/ITags.php @@ -53,6 +53,10 @@ use OC\Tags; */ interface ITags { + /** + * @since 19.0.0 + */ + public const TAG_FAVORITE = '_$!<Favorite>!$_'; /** * Check if any tags are saved for this type and user. |