refactor: wip migrate ot nestjs

This commit is contained in:
Ahmed Bouhuolia
2024-12-19 12:48:24 +02:00
parent bfff56c470
commit 93bf6d9d3d
73 changed files with 4683 additions and 96 deletions

View File

@@ -0,0 +1,15 @@
import { Injectable } from '@nestjs/common';
import { DynamicListAbstract } from './DynamicListAbstract';
import { DynamicFilterSearch } from './DynamicFilter/DynamicFilterSearch';
@Injectable()
export class DynamicListSearch extends DynamicListAbstract {
/**
* Dynamic list filter roles.
* @param {string} searchKeyword - Search keyword.
* @returns {DynamicFilterFilterRoles}
*/
public dynamicSearch = (searchKeyword: string) => {
return new DynamicFilterSearch(searchKeyword);
};
}