5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 02:36:21 +00:00

fix: agregado parentesis en parametro DeployJob #13244
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
jazzari 2023-10-02 15:51:35 -03:00
parent 331dc7f607
commit e175863081

View file

@ -1,5 +1,5 @@
module BaseService
def auto_publish!
DeployJob.perform_later site if site.auto_publish?
DeployJob.perform_later(site.id) if site.auto_publish?
end
end