mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-17 23:20:39 +00:00
Synchronizing API and documentation updates
This commit is contained in:
@@ -1581,13 +1581,15 @@ public interface RepositoryApi {
|
||||
* @param repo name of the repo (required)
|
||||
* @param archive the git reference for download with attached archive format (e.g. master.zip)
|
||||
* (required)
|
||||
* @param path subpath of the repository to download (optional)
|
||||
* @return Call<Void>
|
||||
*/
|
||||
@GET("repos/{owner}/{repo}/archive/{archive}")
|
||||
Call<Void> repoGetArchive(
|
||||
@retrofit2.http.Path("owner") String owner,
|
||||
@retrofit2.http.Path("repo") String repo,
|
||||
@retrofit2.http.Path("archive") String archive);
|
||||
@retrofit2.http.Path("archive") String archive,
|
||||
@retrofit2.http.Query("path") List<String> path);
|
||||
|
||||
/**
|
||||
* Return all users that have write access and can be assigned to issues
|
||||
|
||||
Reference in New Issue
Block a user