class Terjira::Client::Priority

Public Class Methods

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