Explorar el Código

add an empty line for better reading

yohei0125 hace 3 años
padre
commit
41575f98b1
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      packages/app/src/server/models/page-operation.ts

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

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