Przeglądaj źródła

add an empty line for better reading

yohei0125 3 lat temu
rodzic
commit
41575f98b1

+ 1 - 0
packages/app/src/server/models/page-operation.ts

@@ -124,6 +124,7 @@ schema.statics.findMainOps = async function(
 schema.statics.deleteByActionTypes = async function(
 schema.statics.deleteByActionTypes = async function(
     actionTypes: PageActionType[],
     actionTypes: PageActionType[],
 ): Promise<void> {
 ): Promise<void> {
+
   await this.deleteMany({ actionType: { $in: actionTypes } });
   await this.deleteMany({ actionType: { $in: actionTypes } });
   logger.info(`Deleted all PageOperation documents with actionType: [${actionTypes}]`);
   logger.info(`Deleted all PageOperation documents with actionType: [${actionTypes}]`);
 };
 };