mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 17:06:22 +00:00
fix: corregido auto_publish! en Site_service y Post_service #13244
This commit is contained in:
parent
cd018385f7
commit
1c44c91f76
2 changed files with 8 additions and 4 deletions
|
@ -24,7 +24,8 @@ PostService = Struct.new(:site, :usuarie, :post, :params, keyword_init: true) do
|
||||||
|
|
||||||
# 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
|
||||||
post.tap(&:auto_publish!)
|
auto_publish!
|
||||||
|
post
|
||||||
end
|
end
|
||||||
|
|
||||||
# Crear un post anónimo, con opciones más limitadas. No usamos post.
|
# Crear un post anónimo, con opciones más limitadas. No usamos post.
|
||||||
|
@ -37,7 +38,8 @@ PostService = Struct.new(:site, :usuarie, :post, :params, keyword_init: true) do
|
||||||
params[:draft] = true
|
params[:draft] = true
|
||||||
|
|
||||||
commit(action: :created, add: [post.path.absolute]) if post.update(anon_post_params)
|
commit(action: :created, add: [post.path.absolute]) if post.update(anon_post_params)
|
||||||
post.tap(&:auto_publish!)
|
auto_publish!
|
||||||
|
post
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
|
@ -58,7 +60,8 @@ PostService = Struct.new(:site, :usuarie, :post, :params, keyword_init: true) do
|
||||||
|
|
||||||
# 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
|
||||||
post.tap(&:auto_publish!)
|
auto_publish!
|
||||||
|
post
|
||||||
end
|
end
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
|
|
|
@ -38,7 +38,8 @@ SiteService = Struct.new(:site, :usuarie, :params, keyword_init: true) do
|
||||||
deploy
|
deploy
|
||||||
end
|
end
|
||||||
|
|
||||||
site.tap(&:auto_publish!)
|
auto_publish!
|
||||||
|
site
|
||||||
end
|
end
|
||||||
|
|
||||||
# Actualiza el sitio y guarda los cambios en la configuración
|
# Actualiza el sitio y guarda los cambios en la configuración
|
||||||
|
|
Loading…
Reference in a new issue