Merge pull request 'push it to the correct place' (#10) from fixes into main

Reviewed-on: https://codeberg.org/gitnex/tea4j-autodeploy/pulls/10
This commit is contained in:
M M Arif
2023-10-08 06:45:14 +00:00
@@ -97,4 +97,15 @@ public interface CustomApi {
@Headers({"Content-Type:application/json"})
@HTTP(method = "DELETE", path = "user/emails", hasBody = true)
Call<Void> userDeleteEmailWithBody(@Body DeleteEmailOption body);
@Headers({"Content-Type:application/json"})
@GET("notifications")
Call<List<NotificationThread>> notifyGetList2(
@retrofit2.http.Query("all") Boolean all,
@retrofit2.http.Query("status-types") List<String> statusTypes,
@retrofit2.http.Query("subject-type") List<String> subjectType,
@retrofit2.http.Query("since") String since,
@retrofit2.http.Query("before") String before,
@retrofit2.http.Query("page") Integer page,
@retrofit2.http.Query("limit") Integer limit);
}