View Source Jiraffe.Agile.Issue (Jiraffe v0.1.0)

APIs related to issues in Jira Software projects

Summary

Functions

Moves (ranks) issues after a given issue. At most 50 issues may be ranked at once. If rank_custom_field_id is not defined, the default rank field will be used.

Moves (ranks) issues before a given issue. At most 50 issues may be ranked at once. If rank_custom_field_id is not defined, the default rank field will be used.

Types

@type rank_params() :: [{:rank_custom_field_id, non_neg_integer() | nil}]

Functions

Link to this function

rank_after_issue(client, issue_id, issues, params \\ [])

View Source
@spec rank_after_issue(
  client :: Jiraffe.client(),
  issue_id :: String.t(),
  issue_ids :: [String.t()],
  params :: rank_params()
) :: {:ok, String.t()} | {:error, Jiraffe.Error.t()}

Moves (ranks) issues after a given issue. At most 50 issues may be ranked at once. If rank_custom_field_id is not defined, the default rank field will be used.

Link to this function

rank_before_issue(client, issue_id, issues, params \\ [])

View Source
@spec rank_before_issue(
  client :: Jiraffe.client(),
  issue_id :: String.t(),
  issue_ids :: [String.t()],
  params :: rank_params()
) :: {:ok, String.t()} | {:error, Jiraffe.Error.t()}

Moves (ranks) issues before a given issue. At most 50 issues may be ranked at once. If rank_custom_field_id is not defined, the default rank field will be used.