added stargazers and other fixes and enhancements

This commit is contained in:
M M Arif
2019-09-13 20:56:30 +05:00
parent d24e7ffc3b
commit df260f05d2
23 changed files with 734 additions and 67 deletions

View File

@@ -204,4 +204,7 @@ public interface ApiInterface {
@GET("admin/users") // get all users
Call<List<UserInfo>> adminGetUsers(@Header("Authorization") String token);
@GET("repos/{owner}/{repo}/stargazers") // get all repo stars
Call<List<UserInfo>> getRepoStargazers(@Header("Authorization") String token, @Path("owner") String ownerName, @Path("repo") String repoName);
}