Fix user settings API via custom endpoint

This commit is contained in:
M M Arif
2024-03-28 00:20:10 +05:00
parent 3f8f9fce13
commit 23ae641052
@@ -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();
}