mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-06 18:02:16 +00:00
Synchronizing API and documentation updates
This commit is contained in:
@@ -2007,14 +2007,15 @@ public interface RepositoryApi {
|
||||
/**
|
||||
* List a repo's pull requests
|
||||
*
|
||||
* @param owner owner of the repo (required)
|
||||
* @param repo name of the repo (required)
|
||||
* @param state State of pull request: open or closed (optional) (optional)
|
||||
* @param owner Owner of the repo (required)
|
||||
* @param repo Name of the repo (required)
|
||||
* @param state State of pull request (optional, default to open)
|
||||
* @param sort Type of sort (optional)
|
||||
* @param milestone ID of the milestone (optional)
|
||||
* @param labels Label IDs (optional)
|
||||
* @param page page number of results to return (1-based) (optional)
|
||||
* @param limit page size of results (optional)
|
||||
* @param poster Filter by pull request author (optional)
|
||||
* @param page Page number of results to return (1-based) (optional, default to 1)
|
||||
* @param limit Page size of results (optional)
|
||||
* @return Call<List<PullRequest>>
|
||||
*/
|
||||
@GET("repos/{owner}/{repo}/pulls")
|
||||
@@ -2025,6 +2026,7 @@ public interface RepositoryApi {
|
||||
@retrofit2.http.Query("sort") String sort,
|
||||
@retrofit2.http.Query("milestone") Long milestone,
|
||||
@retrofit2.http.Query("labels") List<Long> labels,
|
||||
@retrofit2.http.Query("poster") String poster,
|
||||
@retrofit2.http.Query("page") Integer page,
|
||||
@retrofit2.http.Query("limit") Integer limit);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user