5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 22:26:22 +00:00

fix: corregidos metodos donde se retorna site o post #13244

This commit is contained in:
jazzari 2024-05-03 12:43:53 -03:00
parent ecc4224d0a
commit cd018385f7
2 changed files with 4 additions and 7 deletions

View file

@ -24,8 +24,7 @@ PostService = Struct.new(:site, :usuarie, :post, :params, keyword_init: true) do
# Devolver el post aunque no se haya salvado para poder rescatar los
# errores
post
auto_publish!
post.tap(&:auto_publish!)
end
# Crear un post anónimo, con opciones más limitadas. No usamos post.
@ -38,8 +37,7 @@ PostService = Struct.new(:site, :usuarie, :post, :params, keyword_init: true) do
params[:draft] = true
commit(action: :created, add: [post.path.absolute]) if post.update(anon_post_params)
post
auto_publish!
post.tap(&:auto_publish!)
end
def update
@ -60,8 +58,7 @@ PostService = Struct.new(:site, :usuarie, :post, :params, keyword_init: true) do
# Devolver el post aunque no se haya salvado para poder rescatar los
# errores
post
auto_publish!
post.tap(&:auto_publish!)
end
def destroy

View file

@ -38,7 +38,7 @@ SiteService = Struct.new(:site, :usuarie, :params, keyword_init: true) do
deploy
end
site
site.tap(&:auto_publish!)
end
# Actualiza el sitio y guarda los cambios en la configuración