add: tasks func()

Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
This commit is contained in:
2026-05-20 13:18:27 +08:00
parent 6907e9bb2d
commit 21b98b3b2e
5 changed files with 980 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
const excludeAttributes = [];
const adminExclude = [
...excludeAttributes,
// admins can see audit fields, so nothing extra excluded
];
const userExclude = [
...excludeAttributes,
// regular users cannot see audit trails
];
const jsonbSchemas = {};
const computedAttributes = [];
const filterableFields = {}
module.exports = { adminExclude, userExclude, excludeAttributes, jsonbSchemas, computedAttributes, filterableFields };