bug fixes

This commit is contained in:
cimenmus
2018-01-26 22:58:57 +03:00
parent 2aca6fb523
commit 7b19d9dab9
12 changed files with 250 additions and 8 deletions

View File

@@ -40,9 +40,12 @@ public interface ApiInterface {
@GET(ApiEndPoints.API_GET_ALL_CATEGORIES)
Call<ResponseArray<CategoryModel>> getAllCategories();
@GET(ApiEndPoints.API_GET_IGNORED_CATEGORI_IDS)
@GET(ApiEndPoints.API_GET_IGNORED_CATEGORY_IDS)
Call<ResponseArray<Integer>> getIgnoredCategoryIds();
@GET(ApiEndPoints.API_GET_PIZZA_CATEGORY_IDS)
Call<ResponseArray<Integer>> getPizzaCategoryIds();
@FormUrlEncoded
@POST(ApiEndPoints.API_REGISTER)
Call<ResponseObject<UserModel>> register(@FieldMap HashMap<String, Object> body);