Fix cron edits not working from web interface
This commit is contained in:
parent
312e231ea6
commit
96c657f0ee
|
@ -299,6 +299,8 @@ def _parse_source_config(config_str: str):
|
||||||
config = {"action": parsed["action"]}
|
config = {"action": parsed["action"]}
|
||||||
if "env" in parsed:
|
if "env" in parsed:
|
||||||
config["env"] = parsed["env"]
|
config["env"] = parsed["env"]
|
||||||
|
if "cron" in parsed:
|
||||||
|
config["cron"] = parsed["cron"]
|
||||||
return (None, config)
|
return (None, config)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue