Sha256: 1903df147d4803dd88274d5daf1ae85f2df8160b5cf986f45449850b109ca7b0

Contents?: true

Size: 474 Bytes

Versions: 1

Compression:

Stored size: 474 Bytes

Contents

# frozen_string_literal: true

require 'active_support/core_ext/kernel/singleton_class'

module Webhookr
  class Engine < ::Rails::Engine
    isolate_namespace Webhookr

    # Enable basic auth for all services when config.basic_auth.username
    # and config.basic_auth.password are set.
    config.webhookr = ActiveSupport::OrderedOptions.new
    config.webhookr.basic_auth = ActiveSupport::OrderedOptions.new

    initializer 'webhookr.config' do |app|
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
webhookr-0.3.0 lib/webhookr/engine.rb