Sha256: 3df12553a30af2a0114bc905c4fd69f1a4eaf2de9a089dcbb4780949a0542da9
Contents?: true
Size: 1.64 KB
Versions: 56
Compression:
Stored size: 1.64 KB
Contents
module Alula class OAuthClient < Alula::RestResource extend Alula::ResourceAttributes extend Alula::ApiOperations::Request extend Alula::ApiOperations::List extend Alula::ApiOperations::Save extend Alula::ApiOperations::Delete resource_path 'oauth/clients' type 'oauth-clients' # Resource Fields # Not all params are used at the moment. See Alula::ResourceAttributes for details # on how params are parsed, field :id, type: :string, sortable: false, filterable: false, creatable_by: [:system], patchable_by: [:system] field :client_secret, type: :string, sortable: false, filterable: false, creatable_by: [:system], patchable_by: [:system] field :redirect_uri, type: :array, sortable: false, filterable: false, creatable_by: [:system], patchable_by: [:system] field :client_name, type: :string, sortable: true, filterable: true, creatable_by: [:system], patchable_by: [:system] field :client_author, type: :string, sortable: true, filterable: true, creatable_by: [:system], patchable_by: [:system] field :scope, type: :string, sortable: false, filterable: false, creatable_by: [:system], patchable_by: [:system] field :user_id, type: :string, sortable: false, filterable: true, creatable_by: [:system], patchable_by: [:system] end end
Version data entries
56 entries across 56 versions & 1 rubygems