feat(core) : add rbac seeder and seed-rbac command for system roles

This commit is contained in:
Matthieu
2026-06-19 17:22:42 +02:00
parent 48c67a5fb9
commit 1a9eba93a0
5 changed files with 118 additions and 0 deletions
@@ -0,0 +1,11 @@
<?php
declare(strict_types=1);
namespace App\Module\Core\Domain\Security;
final class SystemRoles
{
public const string ADMIN_CODE = 'admin';
public const string USER_CODE = 'user';
}