ManageIQ/manageiq-api-common

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

Summary

Maintainability
A
0 mins
Test Coverage
module Insights
  module API
    module Common
      module ApplicationControllerMixins
        module RequestParameterValidation
          def self.included(other)
            other.include(OpenapiEnabled)
          end
        end
      end
    end
  end
end