Sha256: b69a98a2a84c425ebc3810d960db298950f18c6875eae8befadc9b88306ac5e2
Contents?: true
Size: 1.4 KB
Versions: 1
Compression:
Stored size: 1.4 KB
Contents
require 'ostruct' require 'rack' module Rswag module Ui class Configuration attr_reader :template_locations attr_accessor :basic_auth_enabled attr_accessor :config_object attr_accessor :oauth_config_object attr_reader :assets_root def initialize @template_locations = [ # preferred override location "#{Rack::Directory.new('').root}/swagger/index.erb", # backwards compatible override location "#{Rack::Directory.new('').root}/app/views/rswag/ui/home/index.html.erb", # default location File.expand_path('../index.erb', __FILE__) ] @assets_root = File.expand_path('../../../../node_modules/swagger-ui-dist', __FILE__) @config_object = {} @oauth_config_object = {} @basic_auth_enabled = false end def swagger_endpoint(url, name) ActiveSupport::Deprecation.warn('Rswag::Ui: WARNING: The method will be renamed to "openapi_endpoint" in v3.0') @config_object[:urls] ||= [] @config_object[:urls] << { url: url, name: name } end def basic_auth_credentials(username, password) @config_object[:basic_auth] = { username: username, password: password } end # rubocop:disable Naming/AccessorMethodName def get_binding binding end # rubocop:enable Naming/AccessorMethodName end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rswag-ui-2.12.0 | lib/rswag/ui/configuration.rb |