2019-08-18 14:51:37 +02:00
|
|
|
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 App
|
|
|
|
|
class Application < Rails::Application
|
|
|
|
|
# Initialize configuration defaults for originally generated Rails version.
|
|
|
|
|
config.load_defaults 6.0
|
|
|
|
|
|
|
|
|
|
# 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-09-23 12:14:35 +02:00
|
|
|
|
|
|
|
|
def name
|
|
|
|
|
ENV["APP_NAME"]
|
|
|
|
|
end
|
2019-09-23 15:52:00 +02:00
|
|
|
|
|
|
|
|
def email_confirmation?
|
|
|
|
|
ENV["EMAIL_CONFIRMATION"] == "1"
|
|
|
|
|
end
|
2019-08-18 14:51:37 +02:00
|
|
|
end
|
|
|
|
|
end
|