Sha256: 26b9c2e1508690cd8bf7eb47ef123f67660a32cb1e6bc44fdcc627e8c0fe60bc
Contents?: true
Size: 361 Bytes
Versions: 100
Compression:
Stored size: 361 Bytes
Contents
module RockRMS class Client module WorkflowType PATH = 'WorkflowTypes'.freeze def list_workflow_types(options = {}) res = get(PATH, options) Response::WorkflowType.format(res) end def find_workflow_type(id) res = get(PATH + "/#{id}") Response::WorkflowType.format(res) end end end end
Version data entries
100 entries across 100 versions & 1 rubygems