5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 09:46:22 +00:00

fix: documentación, valores por defecto y ruta en routes.rb #102

This commit is contained in:
maki 2024-06-07 13:54:28 -03:00
parent c781aa3cd2
commit fb2149d51f
2 changed files with 22 additions and 6 deletions

View file

@ -11,7 +11,7 @@ module ActiveStorage
# Permitir incrustar archivos subidos (especialmente PDFs) desde # Permitir incrustar archivos subidos (especialmente PDFs) desde
# otros sitios. # otros sitios.
def show def show
original_show.tap do |_s| original_show.tap do |_|
response.headers.delete 'X-Frame-Options' response.headers.delete 'X-Frame-Options'
end end
end end
@ -56,9 +56,14 @@ module ActiveStorage
head :unprocessable_entity head :unprocessable_entity
end end
def limits(max_upload_size, max_download_size) # Define una ruta que lleva a un JSON con los valores de los tamaños
# máximos de subida y descarga (respectivamente) que puede tener un
# archivo.
#
# @return [Integer] tamaño de subida que puede tener un archivo expresado en megabytes.
def limits
ruby_hash = { max_upload_size: max_upload_size, max_download_size: max_download_size } ruby_hash = { max_upload_size: max_upload_size, max_download_size: max_download_size }
JSON.generate(ruby_hash) render json: ruby_hash
end end
private private
@ -72,12 +77,20 @@ module ActiveStorage
ExceptionNotifier.notify_exception(exception, data: { params: params.to_hash }) ExceptionNotifier.notify_exception(exception, data: { params: params.to_hash })
end end
# Convierte a la variable de entorno que define el máximo tamaño de subida que puede tener un archivo
# en un entero expresado en megabytes.
#
# @return [Integer] tamaño máximo de subida que puede tener un archivo, expresado en megabytes.
def max_upload_size def max_upload_size
ENV['MAX_UPLOAD_SIZE'].to_i.megabytes ENV.fetch('MAX_UPLOAD_SIZE', '111').to_i.megabytes
end end
# Convierte a la variable de entorno que define el máximo tamaño de descarga que puede tener un archivo
# en un entero expresado en megabytes.
#
# @return [Integer] tamaño máximo de descarga que puede tener un archivo, expresado en megabytes.
def max_download_size def max_download_size
ENV['MAX_DOWNLOAD_SIZE'].to_i.megabytes ENV.fetch('MAX_DOWNLOAD_SIZE', '111').to_i.megabytes
end end
end end
end end

View file

@ -111,6 +111,9 @@ Rails.application.routes.draw do
get 'i18n/edit', to: 'i18n#edit' get 'i18n/edit', to: 'i18n#edit'
post 'i18n', to: 'i18n#update' post 'i18n', to: 'i18n#update'
# Ver límites de tamaño de archivos
get 'limits', to: 'limits'
# Compilar el sitio # Compilar el sitio
post 'enqueue', to: 'sites#enqueue' post 'enqueue', to: 'sites#enqueue'
post 'reorder_posts', to: 'sites#reorder_posts' post 'reorder_posts', to: 'sites#reorder_posts'