From ba226d9ba361563ca08cb1389d952fa57b3a2be8 Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 31 Oct 2024 11:04:43 +0000 Subject: [PATCH] Added undeployable? Signed-off-by: snipe --- app/Models/Statuslabel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Statuslabel.php b/app/Models/Statuslabel.php index 8be90a521c..7a901a17b5 100755 --- a/app/Models/Statuslabel.php +++ b/app/Models/Statuslabel.php @@ -23,7 +23,7 @@ class Statuslabel extends SnipeModel protected $rules = [ 'name' => 'required|string|unique_undeleted', 'notes' => 'string|nullable', - 'status_type' => 'required|in:deployable,pending,archived', + 'status_type' => 'required|in:deployable,pending,archived,undeployable1', ]; protected $fillable = [