2016-08-17 15:56:23 +00:00
|
|
|
require_relative 'boot'
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2021-09-13 16:59:56 +00: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 21:53:20 +00:00
|
|
|
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
|
|
# you've limited to :test, :development, or :production.
|
|
|
|
Bundler.require(*Rails.groups)
|
|
|
|
|
2021-03-19 01:42:43 +00:00
|
|
|
require_relative '../lib/exceptions'
|
2021-01-09 23:32:01 +00:00
|
|
|
require_relative '../lib/enumerable'
|
2021-03-19 01:42:43 +00:00
|
|
|
require_relative '../lib/sanitize_ext/sanitize_config'
|
2020-07-01 17:05:21 +00:00
|
|
|
require_relative '../lib/redis/namespace_extensions'
|
2020-03-26 14:09:16 +00:00
|
|
|
require_relative '../lib/paperclip/url_generator_extensions'
|
2020-03-08 22:56:18 +00:00
|
|
|
require_relative '../lib/paperclip/attachment_extensions'
|
2021-10-18 16:29:04 +00:00
|
|
|
require_relative '../lib/paperclip/storage_extensions'
|
2018-02-21 02:40:12 +00:00
|
|
|
require_relative '../lib/paperclip/lazy_thumbnail'
|
2017-03-04 21:17:10 +00:00
|
|
|
require_relative '../lib/paperclip/gif_transcoder'
|
2021-05-05 17:44:01 +00:00
|
|
|
require_relative '../lib/paperclip/transcoder'
|
2019-06-20 08:52:36 +00:00
|
|
|
require_relative '../lib/paperclip/type_corrector'
|
2020-06-30 21:58:02 +00:00
|
|
|
require_relative '../lib/paperclip/response_with_limit_adapter'
|
2021-05-05 17:44:01 +00:00
|
|
|
require_relative '../lib/terrapin/multi_pipe_extensions'
|
2017-10-08 15:34:34 +00:00
|
|
|
require_relative '../lib/mastodon/snowflake'
|
2017-04-21 01:30:59 +00:00
|
|
|
require_relative '../lib/mastodon/version'
|
2019-09-24 02:35:36 +00:00
|
|
|
require_relative '../lib/devise/two_factor_ldap_authenticatable'
|
|
|
|
require_relative '../lib/devise/two_factor_pam_authenticatable'
|
2019-09-30 23:19:11 +00:00
|
|
|
require_relative '../lib/chewy/strategy/custom_sidekiq'
|
2020-11-06 10:56:31 +00:00
|
|
|
require_relative '../lib/webpacker/manifest_extensions'
|
|
|
|
require_relative '../lib/webpacker/helper_extensions'
|
2021-02-11 22:47:05 +00:00
|
|
|
require_relative '../lib/action_dispatch/cookie_jar_extensions'
|
2021-02-11 01:11:30 +00:00
|
|
|
require_relative '../lib/rails/engine_extensions'
|
2021-03-19 01:43:13 +00:00
|
|
|
require_relative '../lib/active_record/database_tasks_extensions'
|
2021-04-12 01:35:58 +00:00
|
|
|
require_relative '../lib/active_record/batches'
|
2017-03-04 21:17:10 +00:00
|
|
|
|
2016-02-22 17:10:30 +00:00
|
|
|
Dotenv::Railtie.load
|
|
|
|
|
2018-03-19 19:08:56 +00:00
|
|
|
Bundler.require(:pam_authentication) if ENV['PAM_ENABLED'] == 'true'
|
|
|
|
|
2017-05-22 13:01:02 +00:00
|
|
|
require_relative '../lib/mastodon/redis_config'
|
|
|
|
|
2016-02-20 21:53:20 +00:00
|
|
|
module Mastodon
|
|
|
|
class Application < Rails::Application
|
2018-01-19 19:56:47 +00:00
|
|
|
# Initialize configuration defaults for originally generated Rails version.
|
2021-03-24 09:44:31 +00:00
|
|
|
config.load_defaults 6.1
|
|
|
|
config.add_autoload_paths_to_load_path = false
|
2018-01-19 19:56:47 +00:00
|
|
|
|
2016-02-20 21:53:20 +00: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 08:21:35 +00:00
|
|
|
# All translations from config/locales/*.rb,yml are auto loaded.
|
2016-02-20 21:53:20 +00:00
|
|
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
2017-04-12 06:50:50 +00:00
|
|
|
config.i18n.available_locales = [
|
2021-04-22 03:12:27 +00:00
|
|
|
:af,
|
2017-04-23 03:58:47 +00:00
|
|
|
:ar,
|
2018-07-24 18:47:13 +00:00
|
|
|
:ast,
|
2017-04-13 11:16:28 +00:00
|
|
|
:bg,
|
2019-03-18 20:55:21 +00:00
|
|
|
:bn,
|
2019-10-03 01:59:43 +00:00
|
|
|
:br,
|
2017-05-16 22:25:10 +00:00
|
|
|
:ca,
|
2018-05-06 23:34:19 +00:00
|
|
|
:co,
|
2018-09-04 23:50:06 +00:00
|
|
|
:cs,
|
2018-08-31 09:16:19 +00:00
|
|
|
:cy,
|
2018-07-05 12:50:16 +00:00
|
|
|
:da,
|
2017-04-12 06:50:50 +00:00
|
|
|
:de,
|
2018-05-03 13:54:10 +00:00
|
|
|
:el,
|
2019-10-03 01:59:43 +00:00
|
|
|
:en,
|
2017-04-12 06:50:50 +00:00
|
|
|
:eo,
|
2019-11-15 20:00:09 +00:00
|
|
|
:es,
|
2020-05-10 23:09:21 +00: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 22:19:52 +00:00
|
|
|
:'es-MX',
|
2019-10-03 01:59:43 +00:00
|
|
|
:et,
|
2018-04-26 11:56:45 +00:00
|
|
|
:eu,
|
2017-04-24 20:39:15 +00:00
|
|
|
:fa,
|
2017-04-12 06:50:50 +00:00
|
|
|
:fi,
|
|
|
|
:fr,
|
2019-03-18 20:55:21 +00:00
|
|
|
:ga,
|
2021-04-22 03:12:27 +00:00
|
|
|
:gd,
|
2017-12-10 03:19:07 +00:00
|
|
|
:gl,
|
2017-05-02 12:54:35 +00:00
|
|
|
:he,
|
2019-03-18 20:55:21 +00:00
|
|
|
:hi,
|
2017-04-17 08:38:13 +00:00
|
|
|
:hr,
|
2017-04-12 06:50:50 +00:00
|
|
|
:hu,
|
2018-01-21 20:02:23 +00:00
|
|
|
:hy,
|
2017-04-21 17:16:26 +00:00
|
|
|
:id,
|
2017-04-21 17:15:25 +00:00
|
|
|
:io,
|
2020-01-18 22:22:35 +00:00
|
|
|
:is,
|
2017-04-17 08:38:13 +00:00
|
|
|
:it,
|
2017-04-12 06:50:50 +00:00
|
|
|
:ja,
|
2018-08-17 16:00:01 +00:00
|
|
|
:ka,
|
2020-01-26 13:42:35 +00:00
|
|
|
:kab,
|
2019-02-23 21:20:35 +00:00
|
|
|
:kk,
|
2021-10-14 19:02:54 +00:00
|
|
|
:kmr,
|
2019-11-13 22:36:41 +00:00
|
|
|
:kn,
|
2017-07-04 14:11:23 +00:00
|
|
|
:ko,
|
2020-11-10 13:44:17 +00:00
|
|
|
:ku,
|
2019-02-23 21:20:35 +00:00
|
|
|
:lt,
|
2019-02-11 12:19:06 +00:00
|
|
|
:lv,
|
2019-10-03 01:59:43 +00:00
|
|
|
:mk,
|
2019-11-13 22:36:41 +00:00
|
|
|
:ml,
|
|
|
|
:mr,
|
2019-02-11 12:19:06 +00:00
|
|
|
:ms,
|
2017-04-13 14:02:23 +00:00
|
|
|
:nl,
|
2019-10-03 01:59:43 +00:00
|
|
|
:nn,
|
2017-04-12 15:07:51 +00:00
|
|
|
:no,
|
2017-04-18 13:21:16 +00:00
|
|
|
:oc,
|
2017-04-21 01:29:11 +00:00
|
|
|
:pl,
|
2017-04-17 08:38:27 +00:00
|
|
|
:'pt-BR',
|
2019-10-03 01:59:43 +00:00
|
|
|
:'pt-PT',
|
2018-09-02 20:31:53 +00:00
|
|
|
:ro,
|
2017-04-12 06:50:50 +00:00
|
|
|
:ru,
|
2020-11-10 13:44:17 +00:00
|
|
|
:sa,
|
|
|
|
:sc,
|
2021-04-22 03:12:27 +00:00
|
|
|
:si,
|
2017-12-17 02:26:42 +00:00
|
|
|
:sk,
|
2018-05-14 10:52:25 +00:00
|
|
|
:sl,
|
2019-02-11 12:19:06 +00:00
|
|
|
:sq,
|
2019-11-15 20:00:09 +00:00
|
|
|
:sr,
|
2020-05-10 23:09:21 +00:00
|
|
|
:'sr-Latn',
|
2017-10-17 04:41:36 +00:00
|
|
|
:sv,
|
2018-09-02 20:31:53 +00:00
|
|
|
:ta,
|
2018-05-03 13:54:10 +00:00
|
|
|
:te,
|
2017-05-08 13:56:00 +00:00
|
|
|
:th,
|
2017-05-07 14:20:53 +00:00
|
|
|
:tr,
|
2017-04-12 06:50:50 +00:00
|
|
|
:uk,
|
2019-11-13 22:36:41 +00:00
|
|
|
:ur,
|
2020-05-10 09:25:35 +00:00
|
|
|
:vi,
|
2020-11-10 13:44:17 +00:00
|
|
|
:zgh,
|
2017-04-21 17:18:16 +00:00
|
|
|
:'zh-CN',
|
2017-04-12 06:50:50 +00:00
|
|
|
:'zh-HK',
|
2017-04-15 00:49:43 +00:00
|
|
|
:'zh-TW',
|
2017-04-12 06:50:50 +00:00
|
|
|
]
|
2017-04-10 10:52:06 +00:00
|
|
|
|
2018-03-04 08:21:35 +00:00
|
|
|
config.i18n.default_locale = ENV['DEFAULT_LOCALE']&.to_sym
|
2018-09-02 20:31:53 +00:00
|
|
|
|
2018-03-20 15:36:20 +00:00
|
|
|
unless config.i18n.available_locales.include?(config.i18n.default_locale)
|
2018-03-04 08:21:35 +00:00
|
|
|
config.i18n.default_locale = :en
|
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2016-10-14 21:10:07 +00:00
|
|
|
# config.paths.add File.join('app', 'api'), glob: File.join('**', '*.rb')
|
|
|
|
# config.autoload_paths += Dir[Rails.root.join('app', 'api', '*')]
|
2016-03-07 11:42:33 +00:00
|
|
|
|
2016-03-25 01:50:48 +00:00
|
|
|
config.active_job.queue_adapter = :sidekiq
|
|
|
|
|
2016-03-19 13:57:30 +00:00
|
|
|
config.middleware.use Rack::Attack
|
2016-03-25 14:09:40 +00:00
|
|
|
config.middleware.use Rack::Deflater
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2016-10-02 21:46:25 +00:00
|
|
|
config.to_prepare do
|
2017-08-05 02:24:58 +00:00
|
|
|
Doorkeeper::AuthorizationsController.layout 'modal'
|
2017-01-28 02:56:10 +00:00
|
|
|
Doorkeeper::AuthorizedApplicationsController.layout 'admin'
|
2017-01-15 13:01:33 +00:00
|
|
|
Doorkeeper::Application.send :include, ApplicationExtension
|
2020-11-12 22:05:24 +00:00
|
|
|
Doorkeeper::AccessToken.send :include, AccessTokenExtension
|
2019-07-21 16:08:02 +00:00
|
|
|
Devise::FailureApp.send :include, AbstractController::Callbacks
|
|
|
|
Devise::FailureApp.send :include, HttpAcceptLanguage::EasyAccess
|
|
|
|
Devise::FailureApp.send :include, Localized
|
2016-10-02 21:46:25 +00:00
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|
|
|
|
end
|