Add to the correct place?

This commit is contained in:
M M Arif
2025-03-17 14:00:05 +05:00
parent d25f5e7e8e
commit 84724681d5
@@ -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> customIssueRemoveIssueDependencies(@retrofit2.http.Path("owner") String owner,
@retrofit2.http.Path("repo") String repo,
@retrofit2.http.Path("index") String index,
@retrofit2.http.Body IssueMeta body);
}