Sha256: aee78d6740dcd15b20cf8da727e1d44f21eb42209c9b67cccfdf1839880c5e4a
Contents?: true
Size: 548 Bytes
Versions: 22
Compression:
Stored size: 548 Bytes
Contents
# frozen_string_literal: true module Eligible module V1_0 class Session < RestAPIBase ENDPOINT_NAME = 'sessions'.freeze 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 def self.list(_params, _opts = {}) fail NotImplementedError, "Not an allowed operation for this endpoint" end end end end
Version data entries
22 entries across 22 versions & 1 rubygems
Version | Path |
---|---|
eligible-3.0.0.beta12 | lib/eligible/v1_0/session.rb |
eligible-3.0.0.beta11 | lib/eligible/v1_0/session.rb |