Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/Model
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-03-25 17:07:06 +0300
committerJoas Schilling <coding@schilljs.com>2021-03-26 16:27:09 +0300
commitb37dade08f4e33c309f1b7bade1de4ea42e01988 (patch)
treead4509aac52779cb589af6494523689f4bd745a6 /lib/Model
parent2db230b4042aef1932df3d8170cd6420288f3864 (diff)
Fix constant value to plural
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Model')
-rw-r--r--lib/Model/Attendee.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Model/Attendee.php b/lib/Model/Attendee.php
index d70e05495..d840a9fd4 100644
--- a/lib/Model/Attendee.php
+++ b/lib/Model/Attendee.php
@@ -52,7 +52,7 @@ use OCP\AppFramework\Db\Entity;
*/
class Attendee extends Entity {
public const ACTOR_USERS = 'users';
- public const ACTOR_GROUP = 'group';
+ public const ACTOR_GROUPS = 'groups';
public const ACTOR_GUESTS = 'guests';
public const ACTOR_EMAILS = 'emails';