2016-08-17 08:56:23 -07:00
|
|
|
require_relative 'boot'
|
2016-02-20 13:53:20 -08:00
|
|
|
|
2021-09-13 09:59:56 -07:00
|
|
|
require 'rails'
|
|
|
|
|
|
|
|
require 'active_record/railtie'
|
|
|
|
#require 'active_storage/engine'
|
|
|
|
require 'action_controller/railtie'
|
|
|
|
require 'action_view/railtie'
|
|
|
|
require 'action_mailer/railtie'
|
|
|
|
require 'active_job/railtie'
|
|
|
|
#require 'action_cable/engine'
|
|
|
|
#require 'action_mailbox/engine'
|
|
|
|
#require 'action_text/engine'
|
|
|
|
#require 'rails/test_unit/railtie'
|
|
|
|
require 'sprockets/railtie'
|
|
|
|
|
|
|
|
# Used to be implicitly required in action_mailbox/engine
|
|
|
|
require 'mail'
|
2016-02-20 13:53:20 -08:00
|
|
|
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
|
|
# you've limited to :test, :development, or :production.
|
|
|
|
Bundler.require(*Rails.groups)
|
|
|
|
|
2021-03-18 18:42:43 -07:00
|
|
|
require_relative '../lib/exceptions'
|
2021-01-09 15:32:01 -08:00
|
|
|
require_relative '../lib/enumerable'
|
2021-03-18 18:42:43 -07:00
|
|
|
require_relative '../lib/sanitize_ext/sanitize_config'
|
2020-07-01 10:05:21 -07:00
|
|
|
require_relative '../lib/redis/namespace_extensions'
|
2020-03-26 07:09:16 -07:00
|
|
|
require_relative '../lib/paperclip/url_generator_extensions'
|
2020-03-08 15:56:18 -07:00
|
|
|
require_relative '../lib/paperclip/attachment_extensions'
|
2021-10-18 09:29:04 -07:00
|
|
|
require_relative '../lib/paperclip/storage_extensions'
|
2018-02-20 18:40:12 -08:00
|
|
|
require_relative '../lib/paperclip/lazy_thumbnail'
|
2017-03-04 13:17:10 -08:00
|
|
|
require_relative '../lib/paperclip/gif_transcoder'
|
2021-05-05 10:44:01 -07:00
|
|
|
require_relative '../lib/paperclip/transcoder'
|
2019-06-20 01:52:36 -07:00
|
|
|
require_relative '../lib/paperclip/type_corrector'
|
2020-06-30 14:58:02 -07:00
|
|
|
require_relative '../lib/paperclip/response_with_limit_adapter'
|
2021-05-05 10:44:01 -07:00
|
|
|
require_relative '../lib/terrapin/multi_pipe_extensions'
|
2017-10-08 08:34:34 -07:00
|
|
|
require_relative '../lib/mastodon/snowflake'
|
2017-04-20 18:30:59 -07:00
|
|
|
require_relative '../lib/mastodon/version'
|
2019-09-23 19:35:36 -07:00
|
|
|
require_relative '../lib/devise/two_factor_ldap_authenticatable'
|
|
|
|
require_relative '../lib/devise/two_factor_pam_authenticatable'
|
2019-09-30 16:19:11 -07:00
|
|
|
require_relative '../lib/chewy/strategy/custom_sidekiq'
|
2020-11-06 02:56:31 -08:00
|
|
|
require_relative '../lib/webpacker/manifest_extensions'
|
|
|
|
require_relative '../lib/webpacker/helper_extensions'
|
2021-02-11 14:47:05 -08:00
|
|
|
require_relative '../lib/action_dispatch/cookie_jar_extensions'
|
2021-02-10 17:11:30 -08:00
|
|
|
require_relative '../lib/rails/engine_extensions'
|
2021-03-18 18:43:13 -07:00
|
|
|
require_relative '../lib/active_record/database_tasks_extensions'
|
2021-04-11 18:35:58 -07:00
|
|
|
require_relative '../lib/active_record/batches'
|
2017-03-04 13:17:10 -08:00
|
|
|
|
2016-02-22 09:10:30 -08:00
|
|
|
Dotenv::Railtie.load
|
|
|
|
|
2018-03-19 12:08:56 -07:00
|
|
|
Bundler.require(:pam_authentication) if ENV['PAM_ENABLED'] == 'true'
|
|
|
|
|
2017-05-22 06:01:02 -07:00
|
|
|
require_relative '../lib/mastodon/redis_config'
|
|
|
|
|
2016-02-20 13:53:20 -08:00
|
|
|
module Mastodon
|
|
|
|
class Application < Rails::Application
|
2018-01-19 11:56:47 -08:00
|
|
|
# Initialize configuration defaults for originally generated Rails version.
|
2021-03-24 02:44:31 -07:00
|
|
|
config.load_defaults 6.1
|
|
|
|
config.add_autoload_paths_to_load_path = false
|
2018-01-19 11:56:47 -08:00
|
|
|
|
2016-02-20 13:53:20 -08: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)'
|
|
|
|
|
2018-03-04 00:21:35 -08:00
|
|
|
# All translations from config/locales/*.rb,yml are auto loaded.
|
2016-02-20 13:53:20 -08:00
|
|
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
2017-04-11 23:50:50 -07:00
|
|
|
config.i18n.available_locales = [
|
2021-04-21 20:12:27 -07:00
|
|
|
:af,
|
2017-04-22 20:58:47 -07:00
|
|
|
:ar,
|
2018-07-24 11:47:13 -07:00
|
|
|
:ast,
|
2017-04-13 04:16:28 -07:00
|
|
|
:bg,
|
2019-03-18 13:55:21 -07:00
|
|
|
:bn,
|
2019-10-02 18:59:43 -07:00
|
|
|
:br,
|
2017-05-16 15:25:10 -07:00
|
|
|
:ca,
|
2018-05-06 16:34:19 -07:00
|
|
|
:co,
|
2018-09-04 16:50:06 -07:00
|
|
|
:cs,
|
2018-08-31 02:16:19 -07:00
|
|
|
:cy,
|
2018-07-05 05:50:16 -07:00
|
|
|
:da,
|
2017-04-11 23:50:50 -07:00
|
|
|
:de,
|
2018-05-03 06:54:10 -07:00
|
|
|
:el,
|
2019-10-02 18:59:43 -07:00
|
|
|
:en,
|
2017-04-11 23:50:50 -07:00
|
|
|
:eo,
|
2019-11-15 12:00:09 -08:00
|
|
|
:es,
|
2020-05-10 16:09:21 -07:00
|
|
|
:'es-AR',
|
New Crowdin updates (#16269)
* New translations en.yml (Kazakh)
[ci skip]
* New translations en.json (Kazakh)
[ci skip]
* New translations doorkeeper.en.yml (Norwegian Nynorsk)
[ci skip]
* New translations activerecord.en.yml (Norwegian Nynorsk)
[ci skip]
* New translations simple_form.en.yml (Norwegian Nynorsk)
[ci skip]
* New translations en.yml (Norwegian Nynorsk)
[ci skip]
* New translations en.json (Norwegian Nynorsk)
[ci skip]
* New translations doorkeeper.en.yml (Croatian)
[ci skip]
* New translations en.json (Malayalam)
[ci skip]
* New translations doorkeeper.en.yml (Scottish Gaelic)
[ci skip]
* New translations simple_form.en.yml (Malayalam)
[ci skip]
* New translations activerecord.en.yml (Sardinian)
[ci skip]
* New translations en.yml (Kabyle)
[ci skip]
* New translations en.json (Kabyle)
[ci skip]
* New translations en.yml (Sanskrit)
[ci skip]
* New translations en.json (Sanskrit)
[ci skip]
* New translations doorkeeper.en.yml (Sardinian)
[ci skip]
* New translations simple_form.en.yml (Sardinian)
[ci skip]
* New translations activerecord.en.yml (Kabyle)
[ci skip]
* New translations en.yml (Sardinian)
[ci skip]
* New translations en.json (Sardinian)
[ci skip]
* New translations doorkeeper.en.yml (Corsican)
[ci skip]
* New translations activerecord.en.yml (Corsican)
[ci skip]
* New translations simple_form.en.yml (Corsican)
[ci skip]
* New translations en.yml (Corsican)
[ci skip]
* New translations doorkeeper.en.yml (Sorani (Kurdish))
[ci skip]
* New translations simple_form.en.yml (Kabyle)
[ci skip]
* New translations doorkeeper.en.yml (Kabyle)
[ci skip]
* New translations simple_form.en.yml (Sorani (Kurdish))
[ci skip]
* New translations en.json (Silesian)
[ci skip]
* New translations activerecord.en.yml (Standard Moroccan Tamazight)
[ci skip]
* New translations simple_form.en.yml (Standard Moroccan Tamazight)
[ci skip]
* New translations en.yml (Standard Moroccan Tamazight)
[ci skip]
* New translations en.json (Standard Moroccan Tamazight)
[ci skip]
* New translations en.yml (Silesian)
[ci skip]
* New translations en.json (Ido)
[ci skip]
* New translations en.yml (Taigi)
[ci skip]
* New translations en.json (Taigi)
[ci skip]
* New translations doorkeeper.en.yml (Ido)
[ci skip]
* New translations simple_form.en.yml (Ido)
[ci skip]
* New translations en.yml (Ido)
[ci skip]
* New translations activerecord.en.yml (Sorani (Kurdish))
[ci skip]
* New translations en.yml (Sorani (Kurdish))
[ci skip]
* New translations activerecord.en.yml (Malayalam)
[ci skip]
* New translations activerecord.en.yml (Sinhala)
[ci skip]
* New translations en.yml (Kannada)
[ci skip]
* New translations en.json (Kannada)
[ci skip]
* New translations en.yml (Cornish)
[ci skip]
* New translations en.json (Cornish)
[ci skip]
* New translations doorkeeper.en.yml (Sinhala)
[ci skip]
* New translations simple_form.en.yml (Sinhala)
[ci skip]
* New translations en.yml (Sinhala)
[ci skip]
* New translations en.json (Sinhala)
[ci skip]
* New translations doorkeeper.en.yml (Breton)
[ci skip]
* New translations activerecord.en.yml (Breton)
[ci skip]
* New translations simple_form.en.yml (Breton)
[ci skip]
* New translations en.yml (Breton)
[ci skip]
* New translations en.json (Breton)
[ci skip]
* New translations doorkeeper.en.yml (Malayalam)
[ci skip]
* New translations en.json (Sorani (Kurdish))
[ci skip]
* New translations en.yml (Occitan)
[ci skip]
* New translations doorkeeper.en.yml (Serbian (Latin))
[ci skip]
* New translations activerecord.en.yml (Serbian (Latin))
[ci skip]
* New translations simple_form.en.yml (Serbian (Latin))
[ci skip]
* New translations en.yml (Serbian (Latin))
[ci skip]
* New translations en.json (Serbian (Latin))
[ci skip]
* New translations doorkeeper.en.yml (Occitan)
[ci skip]
* New translations activerecord.en.yml (Occitan)
[ci skip]
* New translations simple_form.en.yml (Occitan)
[ci skip]
* New translations en.json (Occitan)
[ci skip]
* New translations doorkeeper.en.yml (Asturian)
[ci skip]
* New translations activerecord.en.yml (Asturian)
[ci skip]
* New translations simple_form.en.yml (Asturian)
[ci skip]
* New translations en.yml (Asturian)
[ci skip]
* New translations en.json (Asturian)
[ci skip]
* New translations en.json (Spanish, Mexico)
[ci skip]
* New translations activerecord.en.yml (Scottish Gaelic)
[ci skip]
* New translations simple_form.en.yml (Scottish Gaelic)
[ci skip]
* New translations en.yml (Scottish Gaelic)
[ci skip]
* New translations en.yml (Spanish, Mexico)
[ci skip]
* New translations simple_form.en.yml (Icelandic)
[ci skip]
* New translations doorkeeper.en.yml (Spanish, Argentina)
[ci skip]
* New translations en.yml (Norwegian)
[ci skip]
* New translations en.json (Norwegian)
[ci skip]
* New translations doorkeeper.en.yml (Dutch)
[ci skip]
* New translations activerecord.en.yml (Dutch)
[ci skip]
* New translations simple_form.en.yml (Dutch)
[ci skip]
* New translations en.yml (Dutch)
[ci skip]
* New translations en.json (Dutch)
[ci skip]
* New translations activerecord.en.yml (Norwegian)
[ci skip]
* New translations en.yml (Macedonian)
[ci skip]
* New translations en.json (Macedonian)
[ci skip]
* New translations en.yml (Lithuanian)
[ci skip]
* New translations en.json (Lithuanian)
[ci skip]
* New translations doorkeeper.en.yml (Korean)
[ci skip]
* New translations simple_form.en.yml (Norwegian)
[ci skip]
* New translations doorkeeper.en.yml (Norwegian)
[ci skip]
* New translations simple_form.en.yml (Korean)
[ci skip]
* New translations activerecord.en.yml (Russian)
[ci skip]
* New translations simple_form.en.yml (Russian)
[ci skip]
* New translations en.yml (Russian)
[ci skip]
* New translations doorkeeper.en.yml (Portuguese)
[ci skip]
* New translations activerecord.en.yml (Portuguese)
[ci skip]
* New translations simple_form.en.yml (Portuguese)
[ci skip]
* New translations en.yml (Portuguese)
[ci skip]
* New translations doorkeeper.en.yml (Polish)
[ci skip]
* New translations en.json (Punjabi)
[ci skip]
* New translations activerecord.en.yml (Polish)
[ci skip]
* New translations simple_form.en.yml (Polish)
[ci skip]
* New translations en.yml (Polish)
[ci skip]
* New translations en.yml (Punjabi)
[ci skip]
* New translations activerecord.en.yml (Korean)
[ci skip]
* New translations en.yml (Korean)
[ci skip]
* New translations en.json (Slovak)
[ci skip]
* New translations doorkeeper.en.yml (Finnish)
[ci skip]
* New translations simple_form.en.yml (Hungarian)
[ci skip]
* New translations en.yml (Hungarian)
[ci skip]
* New translations doorkeeper.en.yml (Hebrew)
[ci skip]
* New translations activerecord.en.yml (Hebrew)
[ci skip]
* New translations simple_form.en.yml (Hebrew)
[ci skip]
* New translations en.yml (Hebrew)
[ci skip]
* New translations en.json (Hebrew)
[ci skip]
* New translations activerecord.en.yml (Finnish)
[ci skip]
* New translations doorkeeper.en.yml (Hungarian)
[ci skip]
* New translations simple_form.en.yml (Finnish)
[ci skip]
* New translations en.yml (Finnish)
[ci skip]
* New translations en.json (Finnish)
[ci skip]
* New translations doorkeeper.en.yml (Basque)
[ci skip]
* New translations activerecord.en.yml (Basque)
[ci skip]
* New translations simple_form.en.yml (Basque)
[ci skip]
* New translations en.yml (Basque)
[ci skip]
* New translations en.json (Armenian)
[ci skip]
* New translations en.yml (Japanese)
[ci skip]
* New translations doorkeeper.en.yml (Georgian)
[ci skip]
* New translations activerecord.en.yml (Georgian)
[ci skip]
* New translations simple_form.en.yml (Georgian)
[ci skip]
* New translations en.yml (Georgian)
[ci skip]
* New translations en.json (Georgian)
[ci skip]
* New translations doorkeeper.en.yml (Japanese)
[ci skip]
* New translations activerecord.en.yml (Japanese)
[ci skip]
* New translations simple_form.en.yml (Japanese)
[ci skip]
* New translations en.yml (Armenian)
[ci skip]
* New translations doorkeeper.en.yml (Italian)
[ci skip]
* New translations activerecord.en.yml (Italian)
[ci skip]
* New translations simple_form.en.yml (Italian)
[ci skip]
* New translations en.yml (Italian)
[ci skip]
* New translations doorkeeper.en.yml (Armenian)
[ci skip]
* New translations activerecord.en.yml (Armenian)
[ci skip]
* New translations simple_form.en.yml (Armenian)
[ci skip]
* New translations doorkeeper.en.yml (Russian)
[ci skip]
* New translations en.yml (Slovak)
[ci skip]
* New translations activerecord.en.yml (Spanish, Argentina)
[ci skip]
* New translations en.json (Portuguese, Brazilian)
[ci skip]
* New translations doorkeeper.en.yml (Icelandic)
[ci skip]
* New translations activerecord.en.yml (Icelandic)
[ci skip]
* New translations en.yml (Icelandic)
[ci skip]
* New translations doorkeeper.en.yml (Galician)
[ci skip]
* New translations activerecord.en.yml (Galician)
[ci skip]
* New translations simple_form.en.yml (Portuguese, Brazilian)
[ci skip]
* New translations en.yml (Portuguese, Brazilian)
[ci skip]
* New translations activerecord.en.yml (Portuguese, Brazilian)
[ci skip]
* New translations en.json (Urdu (Pakistan))
[ci skip]
* New translations doorkeeper.en.yml (Persian)
[ci skip]
* New translations simple_form.en.yml (Spanish, Argentina)
[ci skip]
* New translations en.yml (Spanish, Argentina)
[ci skip]
* New translations doorkeeper.en.yml (Tamil)
[ci skip]
* New translations activerecord.en.yml (Tamil)
[ci skip]
* New translations simple_form.en.yml (Tamil)
[ci skip]
* New translations en.yml (Tamil)
[ci skip]
* New translations en.json (Tamil)
[ci skip]
* New translations activerecord.en.yml (Persian)
[ci skip]
* New translations doorkeeper.en.yml (Portuguese, Brazilian)
[ci skip]
* New translations simple_form.en.yml (Persian)
[ci skip]
* New translations en.yml (Persian)
[ci skip]
* New translations doorkeeper.en.yml (Indonesian)
[ci skip]
* New translations activerecord.en.yml (Indonesian)
[ci skip]
* New translations simple_form.en.yml (Indonesian)
[ci skip]
* New translations en.yml (Indonesian)
[ci skip]
* New translations en.yml (Urdu (Pakistan))
[ci skip]
* New translations doorkeeper.en.yml (Chinese Traditional)
[ci skip]
* New translations simple_form.en.yml (Slovak)
[ci skip]
* New translations simple_form.en.yml (Albanian)
[ci skip]
* New translations en.json (Swedish)
[ci skip]
* New translations doorkeeper.en.yml (Serbian (Cyrillic))
[ci skip]
* New translations activerecord.en.yml (Serbian (Cyrillic))
[ci skip]
* New translations simple_form.en.yml (Serbian (Cyrillic))
[ci skip]
* New translations en.yml (Serbian (Cyrillic))
[ci skip]
* New translations en.json (Serbian (Cyrillic))
[ci skip]
* New translations doorkeeper.en.yml (Albanian)
[ci skip]
* New translations activerecord.en.yml (Albanian)
[ci skip]
* New translations en.yml (Albanian)
[ci skip]
* New translations simple_form.en.yml (Swedish)
[ci skip]
* New translations doorkeeper.en.yml (Slovenian)
[ci skip]
* New translations activerecord.en.yml (Slovenian)
[ci skip]
* New translations simple_form.en.yml (Slovenian)
[ci skip]
* New translations en.yml (Slovenian)
[ci skip]
* New translations en.json (Slovenian)
[ci skip]
* New translations doorkeeper.en.yml (Slovak)
[ci skip]
* New translations activerecord.en.yml (Slovak)
[ci skip]
* New translations en.yml (Swedish)
[ci skip]
* New translations activerecord.en.yml (Swedish)
[ci skip]
* New translations activerecord.en.yml (Chinese Traditional)
[ci skip]
* New translations doorkeeper.en.yml (Ukrainian)
[ci skip]
* New translations simple_form.en.yml (Chinese Traditional)
[ci skip]
* New translations en.yml (Chinese Traditional)
[ci skip]
* New translations doorkeeper.en.yml (Chinese Simplified)
[ci skip]
* New translations activerecord.en.yml (Chinese Simplified)
[ci skip]
* New translations simple_form.en.yml (Chinese Simplified)
[ci skip]
* New translations en.yml (Chinese Simplified)
[ci skip]
* New translations activerecord.en.yml (Ukrainian)
[ci skip]
* New translations doorkeeper.en.yml (Swedish)
[ci skip]
* New translations simple_form.en.yml (Ukrainian)
[ci skip]
* New translations en.yml (Ukrainian)
[ci skip]
* New translations doorkeeper.en.yml (Turkish)
[ci skip]
* New translations activerecord.en.yml (Turkish)
[ci skip]
* New translations simple_form.en.yml (Turkish)
[ci skip]
* New translations en.yml (Turkish)
[ci skip]
* New translations doorkeeper.en.yml (Standard Moroccan Tamazight)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.json (Vietnamese)
[ci skip]
* New translations en.yml (Vietnamese)
[ci skip]
* New translations en.json (Italian)
[ci skip]
* New translations devise.en.yml (Italian)
[ci skip]
* New translations en.json (Czech)
[ci skip]
* New translations en.yml (Czech)
[ci skip]
* New translations doorkeeper.en.yml (Czech)
[ci skip]
* New translations en.json (Czech)
[ci skip]
* New translations en.yml (Czech)
[ci skip]
* New translations doorkeeper.en.yml (Czech)
[ci skip]
* New translations en.yml (Czech)
[ci skip]
* New translations en.json (Chinese Simplified)
[ci skip]
* New translations en.yml (Scottish Gaelic)
[ci skip]
* New translations simple_form.en.yml (Scottish Gaelic)
[ci skip]
* New translations en.yml (Scottish Gaelic)
[ci skip]
* New translations en.json (Thai)
[ci skip]
* New translations en.yml (Thai)
[ci skip]
* New translations doorkeeper.en.yml (Thai)
[ci skip]
* New translations en.yml (Scottish Gaelic)
[ci skip]
* New translations simple_form.en.yml (Scottish Gaelic)
[ci skip]
* New translations activerecord.en.yml (Scottish Gaelic)
[ci skip]
* New translations doorkeeper.en.yml (Scottish Gaelic)
[ci skip]
* New translations en.json (Thai)
[ci skip]
* New translations en.json (Thai)
[ci skip]
* New translations simple_form.en.yml (Thai)
[ci skip]
* New translations activerecord.en.yml (Thai)
[ci skip]
* New translations en.json (Thai)
[ci skip]
* i18n-tasks normalize
* yarn manage:translations
* Fix normalization and enable es-MX
2021-05-19 15:19:52 -07:00
|
|
|
:'es-MX',
|
2019-10-02 18:59:43 -07:00
|
|
|
:et,
|
2018-04-26 04:56:45 -07:00
|
|
|
:eu,
|
2017-04-24 13:39:15 -07:00
|
|
|
:fa,
|
2017-04-11 23:50:50 -07:00
|
|
|
:fi,
|
|
|
|
:fr,
|
2019-03-18 13:55:21 -07:00
|
|
|
:ga,
|
2021-04-21 20:12:27 -07:00
|
|
|
:gd,
|
2017-12-09 19:19:07 -08:00
|
|
|
:gl,
|
2017-05-02 05:54:35 -07:00
|
|
|
:he,
|
2019-03-18 13:55:21 -07:00
|
|
|
:hi,
|
2017-04-17 01:38:13 -07:00
|
|
|
:hr,
|
2017-04-11 23:50:50 -07:00
|
|
|
:hu,
|
2018-01-21 12:02:23 -08:00
|
|
|
:hy,
|
2017-04-21 10:16:26 -07:00
|
|
|
:id,
|
2017-04-21 10:15:25 -07:00
|
|
|
:io,
|
2020-01-18 14:22:35 -08:00
|
|
|
:is,
|
2017-04-17 01:38:13 -07:00
|
|
|
:it,
|
2017-04-11 23:50:50 -07:00
|
|
|
:ja,
|
2018-08-17 09:00:01 -07:00
|
|
|
:ka,
|
2020-01-26 05:42:35 -08:00
|
|
|
:kab,
|
2019-02-23 13:20:35 -08:00
|
|
|
:kk,
|
2021-10-14 12:02:54 -07:00
|
|
|
:kmr,
|
2019-11-13 14:36:41 -08:00
|
|
|
:kn,
|
2017-07-04 07:11:23 -07:00
|
|
|
:ko,
|
2020-11-10 05:44:17 -08:00
|
|
|
:ku,
|
2019-02-23 13:20:35 -08:00
|
|
|
:lt,
|
2019-02-11 04:19:06 -08:00
|
|
|
:lv,
|
2019-10-02 18:59:43 -07:00
|
|
|
:mk,
|
2019-11-13 14:36:41 -08:00
|
|
|
:ml,
|
|
|
|
:mr,
|
2019-02-11 04:19:06 -08:00
|
|
|
:ms,
|
2017-04-13 07:02:23 -07:00
|
|
|
:nl,
|
2019-10-02 18:59:43 -07:00
|
|
|
:nn,
|
2017-04-12 08:07:51 -07:00
|
|
|
:no,
|
2017-04-18 06:21:16 -07:00
|
|
|
:oc,
|
2017-04-20 18:29:11 -07:00
|
|
|
:pl,
|
2017-04-17 01:38:27 -07:00
|
|
|
:'pt-BR',
|
2019-10-02 18:59:43 -07:00
|
|
|
:'pt-PT',
|
2018-09-02 13:31:53 -07:00
|
|
|
:ro,
|
2017-04-11 23:50:50 -07:00
|
|
|
:ru,
|
2020-11-10 05:44:17 -08:00
|
|
|
:sa,
|
|
|
|
:sc,
|
2021-04-21 20:12:27 -07:00
|
|
|
:si,
|
2017-12-16 18:26:42 -08:00
|
|
|
:sk,
|
2018-05-14 03:52:25 -07:00
|
|
|
:sl,
|
2019-02-11 04:19:06 -08:00
|
|
|
:sq,
|
2019-11-15 12:00:09 -08:00
|
|
|
:sr,
|
2020-05-10 16:09:21 -07:00
|
|
|
:'sr-Latn',
|
2017-10-16 21:41:36 -07:00
|
|
|
:sv,
|
2018-09-02 13:31:53 -07:00
|
|
|
:ta,
|
2018-05-03 06:54:10 -07:00
|
|
|
:te,
|
2017-05-08 06:56:00 -07:00
|
|
|
:th,
|
2017-05-07 07:20:53 -07:00
|
|
|
:tr,
|
2017-04-11 23:50:50 -07:00
|
|
|
:uk,
|
2019-11-13 14:36:41 -08:00
|
|
|
:ur,
|
2020-05-10 02:25:35 -07:00
|
|
|
:vi,
|
2020-11-10 05:44:17 -08:00
|
|
|
:zgh,
|
2017-04-21 10:18:16 -07:00
|
|
|
:'zh-CN',
|
2017-04-11 23:50:50 -07:00
|
|
|
:'zh-HK',
|
2017-04-14 17:49:43 -07:00
|
|
|
:'zh-TW',
|
2017-04-11 23:50:50 -07:00
|
|
|
]
|
2017-04-10 03:52:06 -07:00
|
|
|
|
2018-03-04 00:21:35 -08:00
|
|
|
config.i18n.default_locale = ENV['DEFAULT_LOCALE']&.to_sym
|
2018-09-02 13:31:53 -07:00
|
|
|
|
2018-03-20 08:36:20 -07:00
|
|
|
unless config.i18n.available_locales.include?(config.i18n.default_locale)
|
2018-03-04 00:21:35 -08:00
|
|
|
config.i18n.default_locale = :en
|
|
|
|
end
|
2016-02-20 13:53:20 -08:00
|
|
|
|
2016-10-14 14:10:07 -07:00
|
|
|
# config.paths.add File.join('app', 'api'), glob: File.join('**', '*.rb')
|
|
|
|
# config.autoload_paths += Dir[Rails.root.join('app', 'api', '*')]
|
2016-03-07 03:42:33 -08:00
|
|
|
|
2016-03-24 18:50:48 -07:00
|
|
|
config.active_job.queue_adapter = :sidekiq
|
|
|
|
|
2016-03-19 06:57:30 -07:00
|
|
|
config.middleware.use Rack::Attack
|
2016-03-25 07:09:40 -07:00
|
|
|
config.middleware.use Rack::Deflater
|
2016-08-24 08:56:44 -07:00
|
|
|
|
2016-10-02 14:46:25 -07:00
|
|
|
config.to_prepare do
|
2017-08-04 19:24:58 -07:00
|
|
|
Doorkeeper::AuthorizationsController.layout 'modal'
|
2017-01-27 18:56:10 -08:00
|
|
|
Doorkeeper::AuthorizedApplicationsController.layout 'admin'
|
2017-01-15 05:01:33 -08:00
|
|
|
Doorkeeper::Application.send :include, ApplicationExtension
|
2020-11-12 14:05:24 -08:00
|
|
|
Doorkeeper::AccessToken.send :include, AccessTokenExtension
|
2019-07-21 09:08:02 -07:00
|
|
|
Devise::FailureApp.send :include, AbstractController::Callbacks
|
|
|
|
Devise::FailureApp.send :include, HttpAcceptLanguage::EasyAccess
|
|
|
|
Devise::FailureApp.send :include, Localized
|
2016-10-02 14:46:25 -07:00
|
|
|
end
|
2016-02-20 13:53:20 -08:00
|
|
|
end
|
|
|
|
end
|