getTradingDeals /tradings
This commit is contained in:
parent
7b2ecd3bf0
commit
6b8f84a262
@ -129,6 +129,20 @@ public class Response {
|
||||
} else {
|
||||
sendError("500");
|
||||
}
|
||||
}else if(this.url.startsWith("/tradings")) {
|
||||
ArrayList<TradingDeal> allDeals = new DBConnection().getAllTradingDeals();
|
||||
if(allDeals != null && !allDeals.isEmpty()){
|
||||
String json = JsonHelper.objToJson(allDeals);
|
||||
if(json != null && json != ""){
|
||||
sendResponse(json, "200");
|
||||
}else{
|
||||
sendError("500");
|
||||
}
|
||||
}else{
|
||||
sendError("500");
|
||||
}
|
||||
}else{
|
||||
sendError("204");
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user