cheny пре 5 година
родитељ
комит
f59342f6d7
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      app/controller/transaction.js

+ 2 - 1
app/controller/transaction.js

@@ -15,7 +15,8 @@ class TransactionController extends Controller {
 
   async findTransactionList() {
     const res = await this.service.findTransactionList(this.ctx.request.body);
-    this.ctx.ok({ ...res });
+    // this.ctx.ok({ ...res });
+    this.ctx.ok({ res });
   }
 }