Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2022-05-01 22:00:40 +00:00
parent 93215eba35
commit d43cc799ed
2 changed files with 106 additions and 0 deletions
@@ -423,6 +423,20 @@ public interface OrganizationApi {
@retrofit2.http.Query("page") Integer page,
@retrofit2.http.Query("limit") Integer limit);
/**
* List a particular repo of team
*
* @param id id of the team (required)
* @param org organization that owns the repo to list (required)
* @param repo name of the repo to list (required)
* @return Call<Repository>
*/
@GET("teams/{id}/repos/{org}/{repo}")
Call<Repository> orgListTeamRepo(
@retrofit2.http.Path("id") Long id,
@retrofit2.http.Path("org") String org,
@retrofit2.http.Path("repo") String repo);
/**
* List a team&#x27;s repos
*