Merge pull request #12406 from akemidx/vip_tag

Added a checkbox to notate VIP status
This commit is contained in:
snipe
2023-02-23 12:23:29 -08:00
committed by GitHub
8 changed files with 73 additions and 1 deletions
+2
View File
@@ -64,6 +64,7 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo
'scim_externalid',
'avatar',
'gravatar',
'vip',
];
protected $casts = [
@@ -71,6 +72,7 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo
'manager_id' => 'integer',
'location_id' => 'integer',
'company_id' => 'integer',
'vip' => 'boolean',
];