mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 19:56:21 +00:00
fix: usar la base en todos lados
This commit is contained in:
parent
c279d09f46
commit
8e9847c69c
1 changed files with 6 additions and 6 deletions
|
@ -18,11 +18,11 @@ PostService = Struct.new(:site, :usuarie, :post, :params, keyword_init: true) do
|
|||
end
|
||||
|
||||
# Crea los posts anidados
|
||||
create_nested_posts! post, params[:post]
|
||||
create_nested_posts! post, params[base]
|
||||
post.save
|
||||
update_related_posts
|
||||
|
||||
commit(action: :created, add: files)
|
||||
commit(action: :created, add: files) if post.valid?
|
||||
|
||||
update_site_license!
|
||||
|
||||
|
@ -46,14 +46,14 @@ PostService = Struct.new(:site, :usuarie, :post, :params, keyword_init: true) do
|
|||
|
||||
def update
|
||||
post.usuaries << usuarie
|
||||
params[:post][:draft] = true if site.invitade? usuarie
|
||||
params[base][:draft] = true if site.invitade? usuarie
|
||||
|
||||
# Eliminar ("mover") el archivo si cambió de ubicación.
|
||||
if post.update(post_params)
|
||||
rm = []
|
||||
rm << post.path.value_was if post.path.changed?
|
||||
|
||||
create_nested_posts! post, params[:post]
|
||||
create_nested_posts! post, params[base]
|
||||
update_related_posts
|
||||
|
||||
# Es importante que el artículo se guarde primero y luego los
|
||||
|
@ -144,11 +144,11 @@ PostService = Struct.new(:site, :usuarie, :post, :params, keyword_init: true) do
|
|||
end
|
||||
|
||||
def locale
|
||||
params.dig(:post, :lang)&.to_sym || I18n.locale
|
||||
params.dig(base, :lang)&.to_sym || I18n.locale
|
||||
end
|
||||
|
||||
def layout
|
||||
params.dig(:post, :layout) || params[:layout]
|
||||
params.dig(base, :layout) || params[:layout]
|
||||
end
|
||||
|
||||
# Actualiza los artículos relacionados según los métodos que los
|
||||
|
|
Loading…
Reference in a new issue