chinwagsocial/config/application.rb

98 lines
2.6 KiB
Ruby
Raw Normal View History

2016-08-18 01:56:23 +10:00
require_relative 'boot'
2016-02-21 08:53:20 +11:00
require 'rails/all'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
require_relative '../app/lib/exceptions'
require_relative '../lib/paperclip/lazy_thumbnail'
require_relative '../lib/paperclip/gif_transcoder'
require_relative '../lib/paperclip/video_transcoder'
require_relative '../lib/mastodon/snowflake'
require_relative '../lib/mastodon/version'
2018-03-01 05:04:53 +11:00
require_relative '../lib/devise/ldap_authenticatable'
2016-02-23 04:10:30 +11:00
Dotenv::Railtie.load
Bundler.require(:pam_authentication) if ENV['PAM_ENABLED'] == 'true'
require_relative '../lib/mastodon/redis_config'
2016-02-21 08:53:20 +11:00
module Mastodon
class Application < Rails::Application
# Initialize configuration defaults for originally generated Rails version.
2018-04-12 22:45:17 +10:00
config.load_defaults 5.2
2016-02-21 08:53:20 +11:00
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
# config.time_zone = 'Central Time (US & Canada)'
# All translations from config/locales/*.rb,yml are auto loaded.
2016-02-21 08:53:20 +11:00
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
config.i18n.available_locales = [
:en,
:ar,
:bg,
:ca,
:de,
:eo,
:es,
:fa,
:fi,
:fr,
2017-12-10 14:19:07 +11:00
:gl,
:he,
:hr,
:hu,
:hy,
:id,
:io,
:it,
:ja,
:ko,
:nl,
:no,
:oc,
:pl,
:pt,
:'pt-BR',
:ru,
:sk,
:sr,
:'sr-Latn',
:sv,
:th,
:tr,
:uk,
2017-04-22 03:18:16 +10:00
:'zh-CN',
:'zh-HK',
:'zh-TW',
]
config.i18n.default_locale = ENV['DEFAULT_LOCALE']&.to_sym
unless config.i18n.available_locales.include?(config.i18n.default_locale)
config.i18n.default_locale = :en
end
2016-02-21 08:53:20 +11:00
# config.paths.add File.join('app', 'api'), glob: File.join('**', '*.rb')
# config.autoload_paths += Dir[Rails.root.join('app', 'api', '*')]
config.active_job.queue_adapter = :sidekiq
config.middleware.use Rack::Attack
config.middleware.use Rack::Deflater
2016-10-03 08:46:25 +11:00
config.to_prepare do
Doorkeeper::AuthorizationsController.layout 'modal'
Doorkeeper::AuthorizedApplicationsController.layout 'admin'
Doorkeeper::Application.send :include, ApplicationExtension
2016-10-03 08:46:25 +11:00
end
2016-02-21 08:53:20 +11:00
end
end