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:
M M Arif
2025-03-17 08:48:33 +00:00
@@ -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);
}