-
Methods in io.gitea.api that return PullReview
| Modifier and Type |
Method |
Description |
PullReview |
RepositoryApi.repoCreatePullReview(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
CreatePullReviewOptions body) |
Create a review to an pull request
|
PullReview |
RepositoryApi.repoDismissPullReview(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Long id,
DismissPullReviewOptions body) |
Dismiss a review for a pull request
|
PullReview |
RepositoryApi.repoGetPullReview(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Long id) |
Get a specific review for a pull request
|
PullReview |
RepositoryApi.repoSubmitPullReview(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Long id,
SubmitPullReviewOptions body) |
Submit a pending review to an pull request
|
PullReview |
RepositoryApi.repoUnDismissPullReview(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Long id) |
Cancel to dismiss a review for a pull request
|
Methods in io.gitea.api that return types with arguments of type PullReview
| Modifier and Type |
Method |
Description |
java.util.List<PullReview> |
RepositoryApi.repoCreatePullReviewRequests(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
PullReviewRequestOptions body) |
create review requests for a pull request
|
ApiResponse<java.util.List<PullReview>> |
RepositoryApi.repoCreatePullReviewRequestsWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
PullReviewRequestOptions body) |
create review requests for a pull request
|
ApiResponse<PullReview> |
RepositoryApi.repoCreatePullReviewWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
CreatePullReviewOptions body) |
Create a review to an pull request
|
ApiResponse<PullReview> |
RepositoryApi.repoDismissPullReviewWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Long id,
DismissPullReviewOptions body) |
Dismiss a review for a pull request
|
ApiResponse<PullReview> |
RepositoryApi.repoGetPullReviewWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Long id) |
Get a specific review for a pull request
|
java.util.List<PullReview> |
RepositoryApi.repoListPullReviews(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Integer page,
java.lang.Integer limit) |
List all reviews for a pull request
|
ApiResponse<java.util.List<PullReview>> |
RepositoryApi.repoListPullReviewsWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Integer page,
java.lang.Integer limit) |
List all reviews for a pull request
|
ApiResponse<PullReview> |
RepositoryApi.repoSubmitPullReviewWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Long id,
SubmitPullReviewOptions body) |
Submit a pending review to an pull request
|
ApiResponse<PullReview> |
RepositoryApi.repoUnDismissPullReviewWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Long id) |
Cancel to dismiss a review for a pull request
|
Method parameters in io.gitea.api with type arguments of type PullReview
| Modifier and Type |
Method |
Description |
com.squareup.okhttp.Call |
RepositoryApi.repoCreatePullReviewAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
CreatePullReviewOptions body,
ApiCallback<PullReview> callback) |
Create a review to an pull request (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoCreatePullReviewRequestsAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
PullReviewRequestOptions body,
ApiCallback<java.util.List<PullReview>> callback) |
create review requests for a pull request (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoDismissPullReviewAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Long id,
DismissPullReviewOptions body,
ApiCallback<PullReview> callback) |
Dismiss a review for a pull request (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoGetPullReviewAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Long id,
ApiCallback<PullReview> callback) |
Get a specific review for a pull request (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoListPullReviewsAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Integer page,
java.lang.Integer limit,
ApiCallback<java.util.List<PullReview>> callback) |
List all reviews for a pull request (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoSubmitPullReviewAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Long id,
SubmitPullReviewOptions body,
ApiCallback<PullReview> callback) |
Submit a pending review to an pull request (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoUnDismissPullReviewAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Long index,
java.lang.Long id,
ApiCallback<PullReview> callback) |
Cancel to dismiss a review for a pull request (asynchronously)
|
-