Schedule Fixes

Limiting Schedule name 75>255
Moved Payload to bottom of new task window
Closes #2346
This commit is contained in:
Charles Morgan 2020-09-17 00:01:48 -04:00
parent 79f616f791
commit 607184e578
No known key found for this signature in database
GPG key ID: D71946CD723249BD
3 changed files with 41 additions and 40 deletions

View file

@ -103,7 +103,7 @@ class Schedule extends Model
*/
public static $validationRules = [
'server_id' => 'required|exists:servers,id',
'name' => 'nullable|string|max:255',
'name' => 'nullable|string|max:75',
'cron_day_of_week' => 'required|string',
'cron_day_of_month' => 'required|string',
'cron_hour' => 'required|string',