fix bad validation : wrong cascade update after ad status change
This commit is contained in:
parent
40e8b5f733
commit
5d6547a184
|
@ -15,8 +15,8 @@ export class ValidateAdService implements ICommandHandler {
|
||||||
|
|
||||||
async execute(command: ValidateAdCommand): Promise<AggregateID> {
|
async execute(command: ValidateAdCommand): Promise<AggregateID> {
|
||||||
const ad: AdEntity = await this.repository.findOneById(command.id, {
|
const ad: AdEntity = await this.repository.findOneById(command.id, {
|
||||||
waypoints: true,
|
waypoints: false,
|
||||||
schedule: true,
|
schedule: false,
|
||||||
});
|
});
|
||||||
ad.valid();
|
ad.valid();
|
||||||
await this.repository.update(ad.id, ad);
|
await this.repository.update(ad.id, ad);
|
||||||
|
|
Loading…
Reference in New Issue