Sha256: 8f6d525351b1b515e5f0bd23d875b5287cba0744d15ebf99cd0f7b5059ff384a

Contents?: true

Size: 621 Bytes

Versions: 2

Compression:

Stored size: 621 Bytes

Contents

# frozen_string_literal: true

module Eligible
  module V1_0
    module Reports
      class DenialReports < RestAPIBase
        ENDPOINT_NAME = 'reports/denial_reports'.freeze

        def self.create(_params, _opts = {})
          fail NotImplementedError, "Not an allowed operation for this endpoint"
        end

        def self.update(_params, _opts = {})
          fail NotImplementedError, "Not an allowed operation for this endpoint"
        end

        def self.delete(_params, _opts = {})
          fail NotImplementedError, "Not an allowed operation for this endpoint"
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
eligible-3.0.0.beta22 lib/eligible/v1_0/reports/denial_reports.rb
eligible-3.0.0.beta20 lib/eligible/v1_0/reports/denial_reports.rb