TenantAtlas/apps/platform/app/Support/Rbac/Actions/UiActionScope.php
Ahmed Darrazi 9e435ea91f
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 1m2s
feat: implement explicit UiActionContext contract
2026-06-07 13:12:02 +02:00

15 lines
259 B
PHP

<?php
declare(strict_types=1);
namespace App\Support\Rbac\Actions;
enum UiActionScope: string
{
case Workspace = 'workspace';
case Environment = 'environment';
case Record = 'record';
case System = 'system';
case Missing = 'missing';
}