diff --git a/app/Enums/UserRoleEnum.php b/app/Enums/UserRoleEnum.php new file mode 100644 index 0000000000..7bf5540680 --- /dev/null +++ b/app/Enums/UserRoleEnum.php @@ -0,0 +1,34 @@ +. + */ + +namespace FireflyIII\Enums; + +enum UserRoleEnum: string +{ + case CHANGE_PIGGY_BANKS = 'change_piggies'; + case CHANGE_REPETITIONS = 'change_reps'; + case CHANGE_RULES = 'change_rules'; + case CHANGE_TRANSACTIONS = 'change_tx'; + case FULL = 'full'; + case OWNER = 'owner'; + case READ_ONLY = 'ro'; + case VIEW_REPORTS = 'view_reports'; +} \ No newline at end of file diff --git a/app/Models/UserRole.php b/app/Models/UserRole.php index ce16b69013..fdb24f05ec 100644 --- a/app/Models/UserRole.php +++ b/app/Models/UserRole.php @@ -53,14 +53,6 @@ use Illuminate\Support\Carbon; */ class UserRole extends Model { - public const CHANGE_PIGGY_BANKS = 'change_piggies'; - public const CHANGE_REPETITIONS = 'change_reps'; - public const CHANGE_RULES = 'change_rules'; - public const CHANGE_TRANSACTIONS = 'change_tx'; - public const FULL = 'full'; - public const OWNER = 'owner'; - public const READ_ONLY = 'ro'; - public const VIEW_REPORTS = 'view_reports'; protected $fillable = ['title']; /**