Files
nextcloud-tables/lib/Constants/UsergroupType.php
Cleopatra Enjeck M. fca79c7352 fix: Properly display teams in usergroup
Signed-off-by: Cleopatra Enjeck M. <patrathewhiz@gmail.com>
2025-06-06 06:27:19 +01:00

15 lines
268 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Tables\Constants;
class UsergroupType {
public const USER = 0;
public const GROUP = 1;
public const CIRCLE = 2;
}