0
0
Fork 0
mirror of https://github.com/verdigado/organization_folders.git synced 2024-12-06 11:22:41 +01:00

Added organization folder member entity, mapper, service, enums and exceptions

This commit is contained in:
Jonathan Treffler 2024-11-16 03:15:29 +01:00
parent ddb1854e28
commit afb731e56b
5 changed files with 302 additions and 0 deletions

View file

@ -0,0 +1,11 @@
<?php
namespace OCA\OrganizationFolders\Enum;
enum OrganizationFolderMemberPermissionLevel: int {
use FromNameEnum;
case MEMBER = 1;
case MANAGER = 2;
case ADMIN = 3;
}