mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-24 23:36:21 +00:00
Merge branch 'issue-2183' of https://0xacab.org/sutty/sutty into 17.3.alpine.panel.sutty.nl
This commit is contained in:
commit
4e02e0b9e1
1 changed files with 8 additions and 6 deletions
|
@ -43,14 +43,16 @@ PostService = Struct.new(:site, :usuarie, :post, :params, keyword_init: true) do
|
||||||
params[:post][:draft] = true if site.invitade? usuarie
|
params[:post][:draft] = true if site.invitade? usuarie
|
||||||
|
|
||||||
# Eliminar ("mover") el archivo si cambió de ubicación.
|
# Eliminar ("mover") el archivo si cambió de ubicación.
|
||||||
|
if post.update(post_params)
|
||||||
rm = []
|
rm = []
|
||||||
rm << post.path.value_was if post.path.changed?
|
rm << post.path.value_was if post.path.changed?
|
||||||
|
|
||||||
# Es importante que el artículo se guarde primero y luego los
|
# Es importante que el artículo se guarde primero y luego los
|
||||||
# relacionados.
|
# relacionados.
|
||||||
commit(action: :updated, add: update_related_posts, rm: rm) if post.update(post_params)
|
commit(action: :updated, add: update_related_posts, rm: rm)
|
||||||
|
|
||||||
update_site_license!
|
update_site_license!
|
||||||
|
end
|
||||||
|
|
||||||
# Devolver el post aunque no se haya salvado para poder rescatar los
|
# Devolver el post aunque no se haya salvado para poder rescatar los
|
||||||
# errores
|
# errores
|
||||||
|
|
Loading…
Reference in a new issue