This commit is contained in:
Yuri Kuznetsov
2025-09-28 10:50:06 +03:00
parent 3f9ca7aa78
commit bacb824085
+2 -2
View File
@@ -482,11 +482,11 @@
},
"selectHandler": {
"type": "string",
"description": "A select handler for providing filters when selecting related records. Should have a method *getFilters* returning a promise. \n\nPromise value:\n```{bool?: string[], primary?: string, orderBy?: string, order?: 'asc'|'desc', advanced: Record}```"
"description": "A select handler for providing filters when selecting related records. Should have a method *getFilters* returning a promise. Optionally, extend from `handlers/select-related`. \n\nPromise value:\n```{bool?: string[], primary?: string, orderBy?: string, order?: 'asc'|'desc', advanced: Record}```"
},
"createHandler": {
"type": "string",
"description": "A create handler. Provides attributes when creating a new related record. Should have a method *getAttributes* returning a promise."
"description": "A create handler. Provides attributes when creating a new related record. Should have a method *getAttributes* returning a promise. Optionally, extend from `handlers/create-related`."
},
"selectFieldHandler": {
"type": "string",