added open_at for events

This commit is contained in:
2023-06-23 09:54:52 +10:00
parent 673f6051c1
commit 66e2a68cde
4 changed files with 31 additions and 1 deletions

View File

@@ -23,7 +23,7 @@ class EventRequest extends BaseRequest
'end_at' => 'date|after:start_date',
'publish_at' => 'date|nullable',
'status' => [
Rule::in(['draft', 'soon', 'open', 'closed', 'cancelled']),
Rule::in(['draft', 'soon', 'open', 'closed', 'cancelled', 'scheduled']),
],
'registration_type' => [
Rule::in(['none', 'email', 'link', 'message']),