ManageIQ/manageiq-api-common

View on GitHub
lib/insights/api/common/application_controller_mixins/openapi_enabled.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Insights
  module API
    module Common
      module ApplicationControllerMixins
        module OpenapiEnabled
          def self.included(other)
            other.class_attribute :openapi_enabled, :default => true
          end
        end
      end
    end
  end
end