mirror of https://github.com/nocodb/nocodb
Pranav C
2 years ago
9 changed files with 1836 additions and 1792 deletions
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,11 @@ |
|||||||
|
import Filter from '../models/Filter' |
||||||
|
|
||||||
|
export async function filterGet(param: { filterId: string }) { |
||||||
|
const filter = await Filter.get(param.filterId) |
||||||
|
return filter |
||||||
|
} |
||||||
|
|
||||||
|
export async function filterList(param: { viewId: string }) { |
||||||
|
const filter = await Filter.rootFilterList({ viewId: param.viewId }) |
||||||
|
return filter |
||||||
|
} |
@ -1,2 +1,4 @@ |
|||||||
// export * as projectService from './projectService';
|
// export * as projectService from './projectService';
|
||||||
export * as tableService from './tableService'; |
export * as tableService from './tableService'; |
||||||
|
export * as columnService from './columnService'; |
||||||
|
export * as filterService from './filterService'; |
||||||
|
Loading…
Reference in new issue