ministryofjustice/Claim-for-Crown-Court-Defence

View on GitHub
app/interfaces/api/v2/claim_params_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module API
  module V2
    module ClaimParamsHelper
      extend Grape::API::Helpers

      params :common_injection_params do
        optional :api_key, type: String, desc: 'REQUIRED: The API authentication key of the user'
        requires :uuid, type: String, desc: 'REQUIRED: Claim UUID'
      end
    end
  end
end