accout profile

This commit is contained in:
CHIEFSOFT\ameye
2025-09-08 10:50:28 -04:00
parent aa70994148
commit 4b82f5a9d4
2 changed files with 59 additions and 0 deletions
+7
View File
@@ -113,6 +113,13 @@ def merms_account():
response = AccountService.process_request(data)
return response
@api.route("/panel/account/profile", methods=["POST"])
@jwt_required()
def merms_account_profile():
data = request.get_json()
response = AccountService.process_profile_data(data)
return response
@api.route("/panel/account-bar", methods=["POST"])
@jwt_required()