jira-api-restclient
jira-api-restclient copied to clipboard
Issues with "Api::createRemotelink" method
The Api::createRemotelink method (added in 2.0.0) have following problems:
- [ ] it's name violates camelCase naming rules, where each word (except 1st one) in method name must be capitalized (should be
Api::createRemoteLink) - [x] the
globalidparameter in API call should be namedglobalIdinstead (see https://docs.atlassian.com/jira/REST/latest/#api/2/issue-createOrUpdateRemoteIssueLink) - [ ] the
globalidandrelationshipparameters shouldn't be passed to API call when they values are empty
Related to #43
the second point was fixed in https://github.com/chobie/jira-api-restclient/pull/178
cross it out or add link ;)
the second point was fixed in #178
cross it out or add link ;)
Done.