floralvikings / jira-connector

NodeJS Wrapper for the Jira REST API
http://floralvikings.github.io/jira-connector/
MIT License
373 stars 180 forks source link

missing getAllLabels function #196

Closed psyrenpark closed 4 years ago

psyrenpark commented 5 years ago

We want to add getAllLabels function

thx

jira-connector/api/labels.js

this.getAllLabels = function(opts, callback) {
  var options = {
    uri: this.jiraClient.buildURL('/label', '3'),
    method: 'GET',
    json: true,
    followAllRedirects: true
  };

  return this.jiraClient.makeRequest(options, callback);
};
MrRefactoring commented 4 years ago

Hi, @psyrenpark! Can you show PR for us?

MrRefactoring commented 4 years ago

Added in 3.0.1 version