mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-02 15:52:17 +00:00
Synchronizing API and documentation updates
This commit is contained in:
@@ -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's repos
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user