Sha256: 7f6a489cda0629600713e9f63b17c60fd8e5ef007f10946be563ec76b234753f
Contents?: true
Size: 544 Bytes
Versions: 2
Compression:
Stored size: 544 Bytes
Contents
# frozen_string_literal: true module Eligible module V1_0 class Rule < RestAPIBase ENDPOINT_NAME = 'rules'.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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
eligible-3.0.0.beta12 | lib/eligible/v1_0/rule.rb |
eligible-3.0.0.beta11 | lib/eligible/v1_0/rule.rb |