mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Moved event creation to all save events and not only new ones
This commit is contained in:
parent
b55a95b944
commit
d482046a25
1 changed files with 3 additions and 3 deletions
|
@ -38,10 +38,10 @@ module.exports = class InMemoryMilestoneRepository {
|
|||
} else {
|
||||
this.#store.push(milestone);
|
||||
this.#ids[milestone.id.toHexString()] = true;
|
||||
}
|
||||
|
||||
for (const event of milestone.events) {
|
||||
this.#DomainEvents.dispatch(event);
|
||||
}
|
||||
for (const event of milestone.events) {
|
||||
this.#DomainEvents.dispatch(event);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue