diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2024-12-16 15:02:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-16 15:02:51 +0100 |
commit | f9ee3505a073c84e86c3d76485096883e2fff7e6 (patch) | |
tree | dc836edaf4448ab645dc0e4324a18d2c6012135f /lib | |
parent | b9da727b9ba8770881e4d441733806daaac5cd09 (diff) | |
parent | fddbc54003996c59302ed459c361118e99a52b6f (diff) | |
download | nextcloud-server-f9ee3505a073c84e86c3d76485096883e2fff7e6.tar.gz nextcloud-server-f9ee3505a073c84e86c3d76485096883e2fff7e6.zip |
Merge pull request #49731 from nextcloud/bugfix/noid/allow-to-get-permissions-of-a-principal
fix(calendar): Fix getting the permissions of the user
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/Calendar/ICalendar.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Calendar/ICalendar.php b/lib/public/Calendar/ICalendar.php index f29d6f30176..2dfc1ca632f 100644 --- a/lib/public/Calendar/ICalendar.php +++ b/lib/public/Calendar/ICalendar.php @@ -53,7 +53,7 @@ interface ICalendar { public function search(string $pattern, array $searchProperties = [], array $options = [], ?int $limit = null, ?int $offset = null): array; /** - * @return int build up using \OCP\Constants + * @return int build up using {@see \OCP\Constants} * @since 13.0.0 */ public function getPermissions(): int; |