fix: initialize user post registration and load into cqrs_es framework
This commit is contained in:
parent
6609e52632
commit
e3ee7f0922
2 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
// SPDX-FileCopyrightText: 2024 Aravinth Manivannan <realaravinth@batsense.net>
|
// SPDX-FileCopyrightText: 2024 Aravinth Manivannan <realaravinth@batsense.net>
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: AGPL-3.0-or-later
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
|
||||||
use async_trait::async_trait;
|
use async_trait::async_trait;
|
||||||
use cqrs_es::persist::GenericQuery;
|
use cqrs_es::persist::GenericQuery;
|
||||||
use cqrs_es::persist::{PersistenceError, ViewContext, ViewRepository};
|
use cqrs_es::persist::{PersistenceError, ViewContext, ViewRepository};
|
||||||
|
|
|
@ -72,7 +72,7 @@ impl Aggregate for User {
|
||||||
fn apply(&mut self, event: Self::Event) {
|
fn apply(&mut self, event: Self::Event) {
|
||||||
match event {
|
match event {
|
||||||
UserEvent::UserRegistered(e) => {
|
UserEvent::UserRegistered(e) => {
|
||||||
UserBuilder::default()
|
*self = UserBuilder::default()
|
||||||
.username(e.username().into())
|
.username(e.username().into())
|
||||||
.email(e.email().into())
|
.email(e.email().into())
|
||||||
.hashed_password(e.hashed_password().into())
|
.hashed_password(e.hashed_password().into())
|
||||||
|
|
Loading…
Reference in a new issue