new update profile

This commit is contained in:
CHIEFSOFT\ameye
2025-11-27 12:50:58 -05:00
parent 19b606af48
commit 749d01a3a9
4 changed files with 156 additions and 1 deletions
+7
View File
@@ -123,6 +123,13 @@ def merms_account_profile():
response = AccountService.process_profile_data(data)
return response
@api.route("/panel/account/profile-update", methods=["POST"])
@jwt_required()
def merms_account_profile_update():
data = request.get_json()
response = AccountService.update_profile_data(data)
return response
@api.route("/panel/account-bar", methods=["POST"])
@jwt_required()