TenantAtlas/apps/platform/app/Support/Rbac/Actions/UiActionScope.php
ahmido 01ee82a8e2 feat: implement explicit UiActionContext contract (#434)
Implements explicit UiActionContext contract as requested.

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #434
2026-06-07 12:16:52 +00: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';
}