2016-08-17 16:56:23 +01:00
|
|
|
require_relative 'boot'
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2021-09-13 17:59:56 +01: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 18:05:21 +01: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'
|
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 18:44:01 +01:00
|
|
|
require_relative '../lib/paperclip/transcoder'
|
2019-06-20 09:52:36 +01:00
|
|
|
require_relative '../lib/paperclip/type_corrector'
|
2020-06-30 22:58:02 +01:00
|
|
|
require_relative '../lib/paperclip/response_with_limit_adapter'
|
2021-05-05 18:44:01 +01:00
|
|
|
require_relative '../lib/terrapin/multi_pipe_extensions'
|
2017-10-08 16:34:34 +01:00
|
|
|
require_relative '../lib/mastodon/snowflake'
|
2017-04-21 02:30:59 +01:00
|
|
|
require_relative '../lib/mastodon/version'
|
2022-04-28 16:47:34 +01:00
|
|
|
require_relative '../lib/mastodon/rack_middleware'
|
2019-09-24 03:35:36 +01:00
|
|
|
require_relative '../lib/devise/two_factor_ldap_authenticatable'
|
|
|
|
require_relative '../lib/devise/two_factor_pam_authenticatable'
|
2022-05-18 22:29:14 +01:00
|
|
|
require_relative '../lib/chewy/strategy/mastodon'
|
2020-11-06 10:56:31 +00:00
|
|
|
require_relative '../lib/webpacker/manifest_extensions'
|
|
|
|
require_relative '../lib/webpacker/helper_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 02:35:58 +01:00
|
|
|
require_relative '../lib/active_record/batches'
|
2022-07-05 01:41:40 +01:00
|
|
|
require_relative '../lib/simple_navigation/item_extensions'
|
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 14:01:02 +01: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 07:50:50 +01:00
|
|
|
config.i18n.available_locales = [
|
2021-04-22 04:12:27 +01:00
|
|
|
:af,
|
2017-04-23 04:58:47 +01:00
|
|
|
:ar,
|
2018-07-24 19:47:13 +01:00
|
|
|
:ast,
|
2017-04-13 12:16:28 +01:00
|
|
|
:bg,
|
2019-03-18 20:55:21 +00:00
|
|
|
:bn,
|
2019-10-03 02:59:43 +01:00
|
|
|
:br,
|
2017-05-16 23:25:10 +01:00
|
|
|
:ca,
|
2022-03-17 00:37:03 +00:00
|
|
|
:ckb,
|
2018-05-07 00:34:19 +01:00
|
|
|
:co,
|
2018-09-05 00:50:06 +01:00
|
|
|
:cs,
|
2018-08-31 10:16:19 +01:00
|
|
|
:cy,
|
2018-07-05 13:50:16 +01:00
|
|
|
:da,
|
2017-04-12 07:50:50 +01:00
|
|
|
:de,
|
2018-05-03 14:54:10 +01:00
|
|
|
:el,
|
2019-10-03 02:59:43 +01:00
|
|
|
:en,
|
2017-04-12 07:50:50 +01:00
|
|
|
:eo,
|
2019-11-15 20:00:09 +00:00
|
|
|
:es,
|
2020-05-11 00:09:21 +01: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 23:19:52 +01:00
|
|
|
:'es-MX',
|
2019-10-03 02:59:43 +01:00
|
|
|
:et,
|
2018-04-26 12:56:45 +01:00
|
|
|
:eu,
|
2017-04-24 21:39:15 +01:00
|
|
|
:fa,
|
2017-04-12 07:50:50 +01:00
|
|
|
:fi,
|
|
|
|
:fr,
|
2019-03-18 20:55:21 +00:00
|
|
|
:ga,
|
2021-04-22 04:12:27 +01:00
|
|
|
:gd,
|
2017-12-10 03:19:07 +00:00
|
|
|
:gl,
|
2017-05-02 13:54:35 +01:00
|
|
|
:he,
|
2019-03-18 20:55:21 +00:00
|
|
|
:hi,
|
2017-04-17 09:38:13 +01:00
|
|
|
:hr,
|
2017-04-12 07:50:50 +01:00
|
|
|
:hu,
|
2018-01-21 20:02:23 +00:00
|
|
|
:hy,
|
2017-04-21 18:16:26 +01:00
|
|
|
:id,
|
2017-04-21 18:15:25 +01:00
|
|
|
:io,
|
2020-01-18 22:22:35 +00:00
|
|
|
:is,
|
2017-04-17 09:38:13 +01:00
|
|
|
:it,
|
2017-04-12 07:50:50 +01:00
|
|
|
:ja,
|
2018-08-17 17:00:01 +01:00
|
|
|
:ka,
|
2020-01-26 13:42:35 +00:00
|
|
|
:kab,
|
2019-02-23 21:20:35 +00:00
|
|
|
:kk,
|
2019-11-13 22:36:41 +00:00
|
|
|
:kn,
|
2017-07-04 15:11:23 +01: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 02:59:43 +01:00
|
|
|
:mk,
|
2019-11-13 22:36:41 +00:00
|
|
|
:ml,
|
|
|
|
:mr,
|
2019-02-11 12:19:06 +00:00
|
|
|
:ms,
|
2017-04-13 15:02:23 +01:00
|
|
|
:nl,
|
2019-10-03 02:59:43 +01:00
|
|
|
:nn,
|
2017-04-12 16:07:51 +01:00
|
|
|
:no,
|
2017-04-18 14:21:16 +01:00
|
|
|
:oc,
|
2017-04-21 02:29:11 +01:00
|
|
|
:pl,
|
2017-04-17 09:38:27 +01:00
|
|
|
:'pt-BR',
|
2019-10-03 02:59:43 +01:00
|
|
|
:'pt-PT',
|
2018-09-02 21:31:53 +01:00
|
|
|
:ro,
|
2017-04-12 07:50:50 +01:00
|
|
|
:ru,
|
2020-11-10 13:44:17 +00:00
|
|
|
:sa,
|
|
|
|
:sc,
|
2021-04-22 04:12:27 +01:00
|
|
|
:si,
|
2017-12-17 02:26:42 +00:00
|
|
|
:sk,
|
2018-05-14 11:52:25 +01:00
|
|
|
:sl,
|
2019-02-11 12:19:06 +00:00
|
|
|
:sq,
|
2019-11-15 20:00:09 +00:00
|
|
|
:sr,
|
2020-05-11 00:09:21 +01:00
|
|
|
:'sr-Latn',
|
2017-10-17 05:41:36 +01:00
|
|
|
:sv,
|
2018-09-02 21:31:53 +01:00
|
|
|
:ta,
|
2018-05-03 14:54:10 +01:00
|
|
|
:te,
|
2017-05-08 14:56:00 +01:00
|
|
|
:th,
|
2017-05-07 15:20:53 +01:00
|
|
|
:tr,
|
2017-04-12 07:50:50 +01:00
|
|
|
:uk,
|
2019-11-13 22:36:41 +00:00
|
|
|
:ur,
|
2020-05-10 10:25:35 +01:00
|
|
|
:vi,
|
2020-11-10 13:44:17 +00:00
|
|
|
:zgh,
|
2017-04-21 18:18:16 +01:00
|
|
|
:'zh-CN',
|
2017-04-12 07:50:50 +01:00
|
|
|
:'zh-HK',
|
2017-04-15 01:49:43 +01:00
|
|
|
:'zh-TW',
|
2017-04-12 07:50:50 +01:00
|
|
|
]
|
2017-04-10 11:52:06 +01:00
|
|
|
|
2022-02-08 01:34:56 +00:00
|
|
|
config.i18n.default_locale = begin
|
|
|
|
custom_default_locale = ENV['DEFAULT_LOCALE']&.to_sym
|
|
|
|
|
|
|
|
if config.i18n.available_locales.include?(custom_default_locale)
|
|
|
|
custom_default_locale
|
|
|
|
else
|
|
|
|
:en
|
|
|
|
end
|
2018-03-04 08:21:35 +00:00
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2016-10-14 22:10:07 +01: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
|
2022-11-10 01:31:09 +00:00
|
|
|
config.action_mailer.deliver_later_queue_name = 'mailers'
|
2016-03-25 01:50:48 +00:00
|
|
|
|
2016-03-19 13:57:30 +00:00
|
|
|
config.middleware.use Rack::Attack
|
2022-04-28 16:47:34 +01:00
|
|
|
config.middleware.use Mastodon::RackMiddleware
|
2016-08-24 16:56:44 +01:00
|
|
|
|
2016-10-02 22:46:25 +01:00
|
|
|
config.to_prepare do
|
2017-08-05 03:24:58 +01: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 17:08:02 +01:00
|
|
|
Devise::FailureApp.send :include, AbstractController::Callbacks
|
|
|
|
Devise::FailureApp.send :include, Localized
|
2016-10-02 22:46:25 +01:00
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|
|
|
|
end
|