remove password field

This commit is contained in:
Aaron Po
2026-06-23 01:39:57 -04:00
parent b631c0f5db
commit 6883b05824
4 changed files with 4 additions and 31 deletions

View File

@@ -102,8 +102,8 @@ struct BreweryRecord {
/**
* @brief Helper struct to store generated user data.
*
* `email`, `date_of_birth`, and `password` are programmatically generated by
* the orchestrator (never LLM-authored) so a downstream auth-account seeding
* `email` and `date_of_birth` are programmatically generated by the
* orchestrator (never LLM-authored) so a downstream auth-account seeding
* consumer can register real accounts from the pipeline's SQLite export.
*/
struct UserRecord {
@@ -111,7 +111,6 @@ struct UserRecord {
UserResult user;
std::string email{};
std::string date_of_birth{};
std::string password{};
};
#endif // BIERGARTEN_PIPELINE_INCLUDES_DATA_MODEL_GENERATED_MODELS_H_