From 79b31dd75bb04e4a9c79cade72acaacfd2b26e45 Mon Sep 17 00:00:00 2001 From: Suhayb <75957262+Suhaybu@users.noreply.github.com> Date: Sun, 8 Dec 2024 23:49:33 +0300 Subject: [PATCH] updated RegisterUserPayload: + user_id: Uuid --- src/userprofile-lambda/src/models/register.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/userprofile-lambda/src/models/register.rs b/src/userprofile-lambda/src/models/register.rs index 5238708..076f1f4 100644 --- a/src/userprofile-lambda/src/models/register.rs +++ b/src/userprofile-lambda/src/models/register.rs @@ -1,10 +1,12 @@ use serde::Deserialize; use common::models::database as DB; +use uuid::Uuid; #[allow(dead_code)] #[derive(Deserialize, Debug)] pub struct RegisterUserPayload { + user_id: Uuid, routine: RoutineData, scores: DB::PersonalityScores, preferences: Vec,