class Crowdkit::Client::Judgments

Public Instance Methods

all(*args)
Alias for: list
find(*args)
Alias for: get
get(*args) click to toggle source
# File lib/crowdkit/client/judgments.rb, line 3
def get(*args)
  arguments(args, required: [:judgment_id])
  do_get("judgments/#{judgment_id}")
end
Also aliased as: find, show
list(*args) click to toggle source
# File lib/crowdkit/client/judgments.rb, line 10
def list(*args)
  arguments(args, required: [:job_id])

  do_get("jobs/#{job_id}/judgments", arguments.params)
end
Also aliased as: all
show(*args)
Alias for: get