19 lines
575 B
PHP
19 lines
575 B
PHP
<?php
|
|
|
|
namespace App\Models\Enums;
|
|
|
|
enum Permission: string
|
|
{
|
|
case StudyMetadataView = 'study_metadata_view';
|
|
case StudyMetadataEdit = 'study_metadata_edit';
|
|
case StudyDownload = 'study_download';
|
|
case StudyDelete = 'study_delete';
|
|
case StudyArchive = 'study_archive';
|
|
case ReportCreate = 'report_create';
|
|
case ReportDownload = 'report_download';
|
|
case StudyNotesCreate = 'study_notes_create';
|
|
case StudyNotesView = 'study_notes_view';
|
|
case AttachmentUpload = 'attachment_upload';
|
|
case AttachmentDownload = 'attachment_download';
|
|
}
|