first commit
This commit is contained in:
9
app/Enums/OrganisationRole.php
Normal file
9
app/Enums/OrganisationRole.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum OrganisationRole: string
|
||||
{
|
||||
case Admin = 'admin';
|
||||
case Member = 'member';
|
||||
}
|
||||
8
app/Enums/RepositoryType.php
Normal file
8
app/Enums/RepositoryType.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum RepositoryType: string
|
||||
{
|
||||
case Git = 'git';
|
||||
}
|
||||
Reference in New Issue
Block a user