mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-05-31 07:01:55 +00:00
Merge pull request 'Add custom delete dependency endpoint' (#16) from add-endpoint into main
Reviewed-on: https://codeberg.org/gitnex/tea4j-autodeploy/pulls/16
This commit is contained in:
@@ -115,4 +115,11 @@ public interface CustomApi {
|
||||
@Headers({"Content-Type:application/json"})
|
||||
@PATCH("user/settings")
|
||||
Call<UserSettings> customUpdateUserSettings(@Body UserSettingsOptions userSettingsOptions);
|
||||
|
||||
@Headers({"Content-Type:application/json"})
|
||||
@HTTP(method = "DELETE", path = "repos/{owner}/{repo}/issues/{index}/dependencies", hasBody = true)
|
||||
Call<Void> issueRemoveIssueDependencies2(@retrofit2.http.Path("owner") String owner,
|
||||
@retrofit2.http.Path("repo") String repo,
|
||||
@retrofit2.http.Path("index") String index,
|
||||
@retrofit2.http.Body IssueMeta body);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user