fix user id
This commit is contained in:
parent
e7c5f200f1
commit
7974429fdd
|
@ -12,7 +12,6 @@ export class UserEntity extends AggregateRoot<UserProps> {
|
|||
const id = create.id ?? v4();
|
||||
const props: UserProps = { ...create };
|
||||
const user = new UserEntity({ id, props });
|
||||
|
||||
user.addEvent(
|
||||
new UserCreatedDomainEvent({
|
||||
aggregateId: id,
|
||||
|
|
|
@ -21,7 +21,7 @@ export class UserMapper
|
|||
toPersistence = (entity: UserEntity): UserWriteModel => {
|
||||
const copy = entity.getProps();
|
||||
const record: UserWriteModel = {
|
||||
uuid: copy.id,
|
||||
uuid: entity.id,
|
||||
firstName: copy.firstName,
|
||||
lastName: copy.lastName,
|
||||
email: copy.email,
|
||||
|
|
Loading…
Reference in New Issue