getTradingDeals /tradings

This commit is contained in:
Georg Reisinger 2020-12-30 15:14:31 +01:00
parent 7b2ecd3bf0
commit 6b8f84a262

View File

@ -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");
}
}