fix: initialize user post registration and load into cqrs_es framework #25

Merged
realaravinth merged 1 commit from fix-initialize-user into master 2024-07-13 19:28:46 +05:30
2 changed files with 2 additions and 1 deletions
Showing only changes of commit e3ee7f0922 - Show all commits

View file

@ -1,6 +1,7 @@
// SPDX-FileCopyrightText: 2024 Aravinth Manivannan <realaravinth@batsense.net>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
use async_trait::async_trait;
use cqrs_es::persist::GenericQuery;
use cqrs_es::persist::{PersistenceError, ViewContext, ViewRepository};

View file

@ -72,7 +72,7 @@ impl Aggregate for User {
fn apply(&mut self, event: Self::Event) {
match event {
UserEvent::UserRegistered(e) => {
UserBuilder::default()
*self = UserBuilder::default()
.username(e.username().into())
.email(e.email().into())
.hashed_password(e.hashed_password().into())