mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Updated _schedule_at to use local time when _interval is set (#12006)
* updated _schedule_at to use local time when _interval is set * updated schedule_at to use local time when interval is set
This commit is contained in:
committed by
GitHub
parent
ad03061edf
commit
1d2335d578
@@ -52,7 +52,7 @@ class ScriptForm(BootstrapMixin, forms.Form):
|
||||
|
||||
# When interval is used without schedule at, raise an exception
|
||||
if self.cleaned_data['_interval'] and not scheduled_time:
|
||||
raise forms.ValidationError(_('Scheduled time must be set when recurs is used.'))
|
||||
self.cleaned_data['_schedule_at'] = local_now()
|
||||
|
||||
return self.cleaned_data
|
||||
|
||||
|
Reference in New Issue
Block a user