fix files

This commit is contained in:
CHIEFSOFT\ameye
2026-02-23 12:08:29 -05:00
parent 2b58b8b0a6
commit 2d806534f6
3 changed files with 88 additions and 0 deletions
+6
View File
@@ -232,6 +232,12 @@ def merms_account_profile_update():
response = AccountService.update_profile_data(data)
return response
@api.route("/panel/account/profilelinks-update", methods=["POST"])
@jwt_required()
def merms_account_profile_links_update():
data = request.get_json()
response = AccountService.update_profile_link_data(data)
return response
@api.route("/panel/account-bar", methods=["POST"])
@jwt_required()