Merge pull request 'Fix user settings API via custom endpoint' (#13) from fixes into main

Reviewed-on: https://codeberg.org/gitnex/tea4j-autodeploy/pulls/13
This commit is contained in:
M M Arif
2024-03-27 19:22:24 +00:00
@@ -108,4 +108,7 @@ public interface CustomApi {
@retrofit2.http.Query("before") String before,
@retrofit2.http.Query("page") Integer page,
@retrofit2.http.Query("limit") Integer limit);
@GET("user/settings")
Call<UserSettings> customGetUserSettings();
}