diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-03-19 11:20:03 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-03-19 11:22:54 +0100 |
commit | 3b4d5eaa947390920339ed3b66833f2e6667aab5 (patch) | |
tree | 3c32e0c90ce89d9207ee375520bac172ea76c6ee /apps/dav/lib | |
parent | a800a685eb6af953152074ce31289b4f0ac8d730 (diff) | |
download | nextcloud-server-3b4d5eaa947390920339ed3b66833f2e6667aab5.tar.gz nextcloud-server-3b4d5eaa947390920339ed3b66833f2e6667aab5.zip |
fix(dav): Add missing use for OCP\Constants
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/dav/lib')
-rw-r--r-- | apps/dav/lib/SystemTag/SystemTagsRelationsCollection.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/dav/lib/SystemTag/SystemTagsRelationsCollection.php b/apps/dav/lib/SystemTag/SystemTagsRelationsCollection.php index b9fd949d466..77e904954b6 100644 --- a/apps/dav/lib/SystemTag/SystemTagsRelationsCollection.php +++ b/apps/dav/lib/SystemTag/SystemTagsRelationsCollection.php @@ -26,6 +26,7 @@ */ namespace OCA\DAV\SystemTag; +use OCP\Constants; use OCP\IGroupManager; use OCP\IUserSession; use OCP\SystemTag\ISystemTagManager; |