Sha256: 5c1a5bb9e3b340ce53d39eb653014ddea4d35ab0b8e54bf1303c16a28494526d

Contents?: true

Size: 619 Bytes

Versions: 2

Compression:

Stored size: 619 Bytes

Contents

# frozen_string_literal: true

module Eligible
  module V1_0
    module Reports
      class DenialCounts < RestAPIBase
        ENDPOINT_NAME = 'reports/denial_counts'.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_counts.rb
eligible-3.0.0.beta20 lib/eligible/v1_0/reports/denial_counts.rb