mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-05-31 07:01:55 +00:00
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:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user