743bddc065
- End point to return api version - Move agent bot listener to sync dispatcher - gem update
41 lines
1.3 KiB
Ruby
41 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative 'boot'
|
|
|
|
require 'rails/all'
|
|
|
|
# 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
|
|
# Initialize configuration defaults for originally generated Rails version.
|
|
config.load_defaults 6.0
|
|
|
|
config.autoload_paths << Rails.root.join('lib')
|
|
config.eager_load_paths << Rails.root.join('lib')
|
|
|
|
# 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')
|
|
|
|
# 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.
|
|
config.generators.javascripts = false
|
|
config.generators.stylesheets = false
|
|
|
|
config.action_dispatch.default_headers = {
|
|
'X-Frame-Options' => 'ALLOWALL'
|
|
}
|
|
|
|
# Custom chatwoot configurations
|
|
config.x = config_for(:app).with_indifferent_access
|
|
end
|
|
|
|
def self.config
|
|
@config ||= Rails.configuration.x
|
|
end
|
|
end
|