5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-02 08:24:16 +00:00

fix: agregado metodo page_not_found en disk_controller_decorator.rb #14378

This commit is contained in:
jazzari 2023-11-22 15:15:49 +01:00
parent 32fdb4e796
commit c86507e628

View file

@ -14,7 +14,7 @@ module ActiveStorage
if acceptable_content?(token)
named_disk_service(token[:service_name]).upload token[:key], request.body, checksum: token[:checksum]
blob = ActiveStorage::Blob.find_by! token[:key]
blob = ActiveStorage::Blob.find_by_key! token[:key]
site = Site.find_by_name token[:service_name]
site.static_files.attach(blob)
@ -27,6 +27,12 @@ module ActiveStorage
rescue ActiveStorage::IntegrityError
head :unprocessable_entity
end
private
def page_not_found(exception)
head :not_found
ExceptionNotifier.notify_exception(exception, data: {params: params.to_hash})
end
end
end
end