Skip to content

Commit

Permalink
feat: Support remove_assignees on issue API
Browse files Browse the repository at this point in the history
Refs: #631
  • Loading branch information
benpueschel committed Aug 30, 2024
1 parent 8aa113e commit 07b8758
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/api/issues.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,31 @@ impl<'octo> IssueHandler<'octo> {
.await
}

/// Removes one or more assignees from an issue.
/// ```no_run
/// # async fn run() -> octocrab::Result<()> {
/// # let octocrab = octocrab::Octocrab::default();
/// let issue = octocrab.issues("owner", "repo").remove_assignees(101, &["username1", "username2"]).await?;
/// # Ok(())
/// # }
/// ```
pub async fn remove_assignees(
&self,
number: u64,
assignees: &[&str],
) -> Result<models::issues::Issue> {
let route = format!(
"/repos/{owner}/{repo}/issues/{issue}/assignees",
owner = self.owner,
repo = self.repo,
issue = number
);

self.crab
.delete(route, Some(&serde_json::json!({ "assignees": assignees })))
.await
}

/// Checks if a user has permission to be assigned to an issue in
/// the repository.
/// ```no_run
Expand Down

0 comments on commit 07b8758

Please sign in to comment.