fix: hooks names

This commit is contained in:
abdou6666 2024-12-13 15:47:45 +01:00
parent b8d8bfeaa6
commit d0ab39f6c3
2 changed files with 5 additions and 5 deletions

View File

@ -40,7 +40,7 @@ export class SettingRepository extends BaseRepository<Setting> {
*
* @param setting The `Setting` document to be validated.
*/
async postValidate(
async preCreateValidate(
setting: Document<unknown, unknown, Setting> &
Setting & { _id: Types.ObjectId },
) {

View File

@ -86,12 +86,12 @@ export abstract class BaseRepository<
hooks?.validate.pre.execute(async function () {
const doc = this as HydratedDocument<T>;
await repository.preValidate(doc);
await repository.preCreateValidate(doc);
repository.emitter.emit(repository.getEventName(EHook.preValidate), doc);
});
hooks?.validate.post.execute(async function (created: HydratedDocument<T>) {
await repository.postValidate(created);
await repository.postCreateValidate(created);
repository.emitter.emit(
repository.getEventName(EHook.postValidate),
created,
@ -479,11 +479,11 @@ export abstract class BaseRepository<
return await this.model.deleteMany(criteria);
}
async preValidate(_doc: HydratedDocument<T>): Promise<void> {
async preCreateValidate(_doc: HydratedDocument<T>): Promise<void> {
// Nothing ...
}
async postValidate(_validated: HydratedDocument<T>): Promise<void> {
async postCreateValidate(_validated: HydratedDocument<T>): Promise<void> {
// Nothing ...
}