5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2025-02-22 13:41:47 +00:00

fix: permitir todos los parametros antes de informarlos #17991

This commit is contained in:
f 2024-12-18 14:53:03 -03:00
parent c6428c8b11
commit 3ef8cf8bd7
No known key found for this signature in database

View file

@ -68,6 +68,9 @@ module ActiveStorage
def page_not_found(exception) def page_not_found(exception)
head :not_found head :not_found
params.permit!
ExceptionNotifier.notify_exception(exception, data: { params: params.to_hash }) ExceptionNotifier.notify_exception(exception, data: { params: params.to_hash })
end end
end end