Skip to content
Snippets Groups Projects

Bug 565601 - Use bots API to check if user is a registered bot and as…

Merged Christopher Guindon requested to merge bug565601 into master
4 files
+ 119
7
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -12,6 +12,7 @@ package org.eclipse.foundation.gerrit.validation;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import okhttp3.HttpUrl;
import retrofit2.Response;
import retrofit2.http.GET;
@@ -31,4 +32,7 @@ interface APIService {
@GET("/account/profile/{name}/eca")
CompletableFuture<Response<ECA>> eca(@Path("name") String name);
@GET("/bots")
CompletableFuture<Response<List<Bot>>> bots(@Query("q") String query);
}
Loading