process_action_request

This commit is contained in:
CHIEFSOFT\ameye
2025-06-24 11:59:45 -04:00
parent 11e4640ee8
commit 0f756921c4
2 changed files with 26 additions and 3 deletions
+10 -3
View File
@@ -87,14 +87,21 @@ def merms_account_bar():
response = AccountService.process_bar_request(data)
return response
@api.route("/panel/account-actions", methods=["POST"])
@api.route("/panel/account/bar", methods=["POST"])
@jwt_required()
def merms_account_bar2():
data = request.get_json()
response = AccountService.process_bar_request(data)
return response
@api.route("/panel/account/actions", methods=["POST"])
@jwt_required()
def merms_account_actions():
data = request.get_json()
response = AccountService.process_request(data)
response = AccountService.process_action_request(data)
return response
@api.route("/panel/account-productsurl", methods=["POST"])
@api.route("/panel/account/productsurl", methods=["POST"])
@jwt_required()
def merms_account_product_url():
data = request.get_json()