rempved filter from find all

This commit is contained in:
Suman991 2026-04-09 15:02:09 +05:30
parent c9fa1a59d1
commit 680918618b

View File

@ -37,7 +37,7 @@ export class FormService {
} }
async findAll(): Promise<Form[]> { async findAll(): Promise<Form[]> {
return await this.formModel.find({deletedAt:null}).exec(); return await this.formModel.find().exec();
} }
async find(formId: string): Promise<Form> { async find(formId: string): Promise<Form> {