class Terjira::Client::Resolution

Public Class Methods

all() click to toggle source
# File lib/terjira/client/resolution.rb, line 7
def all
  resp = api_get('resolution')
  resp.map { |resolution| build(resolution) }
end