mirror of
https://gitlab.com/mobicoop/v3/service/ad.git
synced 2026-01-07 21:42:40 +00:00
fix bad validation : wrong cascade update after ad status change
This commit is contained in:
@@ -15,8 +15,8 @@ export class ValidateAdService implements ICommandHandler {
|
||||
|
||||
async execute(command: ValidateAdCommand): Promise<AggregateID> {
|
||||
const ad: AdEntity = await this.repository.findOneById(command.id, {
|
||||
waypoints: true,
|
||||
schedule: true,
|
||||
waypoints: false,
|
||||
schedule: false,
|
||||
});
|
||||
ad.valid();
|
||||
await this.repository.update(ad.id, ad);
|
||||
|
||||
Reference in New Issue
Block a user