예제 #1
0
파일: items.py 프로젝트: ThinkZ/pkyx
 def delete(self, item_id):
     if Item.del_item_by_id(item_id):
         return jsonify(status=True)
     else:
         return jsonify(status=False)
예제 #2
0
 def delete(self, item_id):
     if Item.del_item_by_id(item_id):
         return jsonify(status=True)
     else:
         return jsonify(status=False)