2019-10-16 21:48:07 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
require_relative 'boot'
|
|
|
|
|
2019-10-16 21:48:07 +00:00
|
|
|
require 'rails/all'
|
2019-08-14 09:48:44 +00:00
|
|
|
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
|
|
# you've limited to :test, :development, or :production.
|
|
|
|
Bundler.require(*Rails.groups)
|
|
|
|
|
|
|
|
module Chatwoot
|
|
|
|
class Application < Rails::Application
|
2019-08-19 08:19:57 +00:00
|
|
|
# Initialize configuration defaults for originally generated Rails version.
|
2020-01-09 06:29:31 +00:00
|
|
|
config.load_defaults 6.0
|
2019-10-18 07:07:09 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
config.autoload_paths << Rails.root.join('lib')
|
|
|
|
config.eager_load_paths << Rails.root.join('lib')
|
|
|
|
|
2020-01-09 09:06:20 +00:00
|
|
|
# This is required in production for zeitwerk to autoload the file
|
|
|
|
config.paths.add File.join('app', 'bot'), glob: File.join('**', '*.rb')
|
|
|
|
config.autoload_paths << Rails.root.join('app/bot')
|
|
|
|
|
2019-08-19 08:19:57 +00:00
|
|
|
# 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.
|
2019-10-23 10:29:45 +00:00
|
|
|
config.generators.javascripts = false
|
2019-10-24 11:38:38 +00:00
|
|
|
config.generators.stylesheets = false
|
2019-10-29 07:20:54 +00:00
|
|
|
|
|
|
|
config.action_dispatch.default_headers = {
|
|
|
|
'X-Frame-Options' => 'ALLOWALL'
|
|
|
|
}
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
end
|