start profile schema

This commit is contained in:
CHIEFSOFT\ameye
2025-08-13 12:17:09 -04:00
parent 6c3c5bbaad
commit 9f2a007283
3 changed files with 50 additions and 0 deletions
+8
View File
@@ -227,6 +227,14 @@ def mycalendar_dash():
response = AccountService.process_calendar(data)
return response
# /panel/account/calendar
@api.route("/panel/account/startprofile", methods=["POST"])
def account_startprofile():
data = request.get_json()
logger.info(f"Route StartProfile Data ==>>>> {data}")
response = AccountService.process_startprofile(data)
return response
# Health Check Endpoint
@api.route("/test", methods=["GET"])
def test_check():