mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 10:36: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
|
||||
# errores
|
||||
post.tap(&:auto_publish!)
|
||||
auto_publish!
|
||||
post
|
||||
end
|
||||
|
||||
# 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
|
||||
|
||||
commit(action: :created, add: [post.path.absolute]) if post.update(anon_post_params)
|
||||
post.tap(&:auto_publish!)
|
||||
auto_publish!
|
||||
post
|
||||
end
|
||||
|
||||
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
|
||||
# errores
|
||||
post.tap(&:auto_publish!)
|
||||
auto_publish!
|
||||
post
|
||||
end
|
||||
|
||||
def destroy
|
||||
|
|
|
@ -38,7 +38,8 @@ SiteService = Struct.new(:site, :usuarie, :params, keyword_init: true) do
|
|||
deploy
|
||||
end
|
||||
|
||||
site.tap(&:auto_publish!)
|
||||
auto_publish!
|
||||
site
|
||||
end
|
||||
|
||||
# Actualiza el sitio y guarda los cambios en la configuración
|
||||
|
|
Loading…
Reference in a new issue