Sha256: aee78d6740dcd15b20cf8da727e1d44f21eb42209c9b67cccfdf1839880c5e4a
Contents?: true
Size: 548 Bytes
Versions: 21
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
21 entries across 21 versions & 1 rubygems