View Source Jiraffe.Agile.Issue (Jiraffe v0.1.1)
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
@spec rank_after_issue( client :: Jiraffe.Client.t(), 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.
@spec rank_before_issue( client :: Jiraffe.Client.t(), 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.