5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-27 13:46:21 +00:00

Merge branch 'issue-17343' into production.panel.sutty.nl

This commit is contained in:
f 2024-10-14 15:20:03 -03:00
commit 2befeec319
No known key found for this signature in database
2 changed files with 16 additions and 12 deletions

View file

@ -32,7 +32,7 @@ module ExceptionHandler
flash[:error] = I18n.t('errors.page_unauthorized')
ExceptionNotifier.notify_exception(exception)
ExceptionNotifier.notify_exception(exception, data: { usuarie: current_usuarie.id })
redirect_to site_path(site)
end

View file

@ -1,12 +1,16 @@
.form-check
= hidden_field_tag "#{base}[#{attribute}]", '0', id: nil
.custom-control.custom-switch
= check_box_tag "#{base}[#{attribute}]", '1', metadata.value,
class: "custom-control-input #{invalid(post, attribute)}",
aria: { describedby: id_for_help(attribute) },
autofocus: autofocus
= label_tag "#{base}_#{attribute}", post_label_t(attribute, post: post),
class: 'custom-control-label'
-# TODO: convertir los atributos draft a un tipo
- if attribute == :draft && site.invitade?(current_usuarie)
-# Nada
- else
.form-check
= hidden_field_tag "#{base}[#{attribute}]", '0', id: nil
.custom-control.custom-switch
= check_box_tag "#{base}[#{attribute}]", '1', metadata.value,
class: "custom-control-input #{invalid(post, attribute)}",
aria: { describedby: id_for_help(attribute) },
autofocus: autofocus
= label_tag "#{base}_#{attribute}", post_label_t(attribute, post: post),
class: 'custom-control-label'
= render 'posts/attribute_feedback',
post: post, attribute: attribute, metadata: metadata
= render 'posts/attribute_feedback',
post: post, attribute: attribute, metadata: metadata