# File lib/jira/resource/applinks.rb, line 24 def self.all(client, options = {}) response = client.get(collection_path(client)) json = parse_json(response.body) json = json['list'] json.map do |attrs| self.new(client, {:attrs => attrs}.merge(options)) end end