mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-22 21:57:11 +00:00
Merge pull request #38 from HabitRPG/remove-commented-lines-api-service
Remove commented code from ApiService
This commit is contained in:
commit
7f0d6f8366
1 changed files with 0 additions and 28 deletions
|
|
@ -46,9 +46,6 @@ public interface ApiService {
|
|||
@POST("/user/inventory/buy/{key}")
|
||||
void buyItem(@Path("key") String itemKey, Callback<Void> voidCallback);
|
||||
|
||||
// @POST("/user/revive")
|
||||
// void revive(Callback<HabitRPGUser> habitRPGUserCallback);
|
||||
|
||||
|
||||
@GET("/user/tasks/{id}")
|
||||
void getTask(@Path("id") String id, Callback<Task> habitItemCallback);
|
||||
|
|
@ -114,29 +111,4 @@ public interface ApiService {
|
|||
@POST("/groups/{gid}/chat/seen")
|
||||
void seenMessage(@Path("gid") String groupId, Callback<Void> cb);
|
||||
|
||||
/*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@POST("/user/inventory/sell/{type}/{key}")
|
||||
void sellItem(@Path("type") String type, @Path("key") String key);//Check callback
|
||||
|
||||
@POST("/user/inventory/purchase/{type}/{key}")
|
||||
void purchaseItem(@Path("type") String type, @Path("key") String key);//Check callback
|
||||
|
||||
@POST("/user/inventory/feed/{pet}/{food}")
|
||||
void feedPet(@Path("pet") String pet, @Path("food") String food);//Check Callback
|
||||
|
||||
@POST("/user/inventory/equip/{type}/{key}")
|
||||
void equip(@Path("type") String type, @Path("key") String key);
|
||||
|
||||
@POST("/user/inventory/hatch/{egg}/{hatchingPotion}")
|
||||
void hatch(@Path("egg") String egg, @Path("hatchingPotion") String potion);//Check Callback
|
||||
|
||||
|
||||
|
||||
*/
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue