mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 17:01:42 +00:00
3bcdc5a00f
activestorage permite subida de archivos sin autenticación!
53 lines
1.6 KiB
Ruby
53 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative 'boot'
|
|
|
|
require 'rails'
|
|
# Pick the frameworks you want:
|
|
require 'active_model/railtie'
|
|
require 'active_job/railtie'
|
|
require 'active_record/railtie'
|
|
require 'active_storage/engine'
|
|
require 'action_controller/railtie'
|
|
require 'action_mailer/railtie'
|
|
# require 'action_mailbox/engine'
|
|
require 'action_text/engine'
|
|
require 'action_view/railtie'
|
|
# require "action_cable/engine"
|
|
require 'sprockets/railtie'
|
|
require 'rails/test_unit/railtie'
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
# you've limited to :test, :development, or :production.
|
|
Bundler.require(*Rails.groups)
|
|
|
|
module Sutty
|
|
# Sutty!
|
|
class Application < Rails::Application
|
|
# Initialize configuration defaults for originally generated Rails
|
|
# version.
|
|
config.load_defaults 6.1
|
|
|
|
# Settings in config/environments/* take precedence over those
|
|
# specified here. Application configuration can go into files in
|
|
# config/initializers -- all .rb files in that directory are
|
|
# automatically loaded after loading the framework and any gems in
|
|
# your application.
|
|
config.action_dispatch
|
|
.rescue_responses['Pundit::NotAuthorizedError'] = :forbidden
|
|
|
|
config.active_storage.variant_processor = :vips
|
|
|
|
config.after_initialize do
|
|
ActiveStorage::DirectUploadsController.include ActiveStorage::AuthenticatedDirectUploadsController
|
|
|
|
I18n.available_locales.each do |locale|
|
|
translations = I18n.t(:email_address, locale: locale)
|
|
|
|
next unless translations.is_a? Hash
|
|
|
|
EmailAddress::Config.error_messages translations.transform_keys(&:to_s), locale.to_s
|
|
end
|
|
end
|
|
end
|
|
end
|