Allow projects to auto-assign managers and reviewers

This commit is contained in:
Alex Cabal 2024-12-18 20:57:21 -06:00
parent e51cc4395e
commit 4596aeb007
12 changed files with 116 additions and 21 deletions

View file

@ -0,0 +1,7 @@
<?
namespace Enums;
enum ProjectRoleType: string{
case Manager = 'manager';
case Reviewer = 'reviewer';
}