Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2026-04-09 00:02:01 +00:00
parent a708efafaf
commit 439c7c4c1d
2 changed files with 97 additions and 0 deletions
@@ -342,6 +342,15 @@ public interface OrganizationApi {
Call<Void> orgDeleteMember(
@retrofit2.http.Path("org") String org, @retrofit2.http.Path("username") String username);
/**
* Delete all repositories in an organization
*
* @param org name of the organization (required)
* @return Call&lt;Void&gt;
*/
@DELETE("orgs/{org}/repos")
Call<Void> orgDeleteRepos(@retrofit2.http.Path("org") String org);
/**
* Delete a team
*