crudHandlerType
constcrudHandlerType:object
Enum of supported crud handler types
Type Declaration
afterCreate
readonlyafterCreate:"afterCreate"="afterCreate"
Defines a custom action that runs after creating a resource. Associated with AfterCreateCrudHandler
afterDelete
readonlyafterDelete:"afterDelete"="afterDelete"
Defines a custom action that runs after deleting a resource. Associated with AfterDeleteCrudHandler
afterUpdate
readonlyafterUpdate:"afterUpdate"="afterUpdate"
Defines a custom action that runs after updating a resource. Associated with AfterUpdateCrudHandler
get
readonlyget:"get"="get"
Defines a custom action that overrides the default get action. Associated with GetHandler
getOne
readonlygetOne:"getOne"="getOne"
Defines a custom action that overrides the default get by id action. Associated with GetOneHandler
preCreate
readonlypreCreate:"preCreate"="preCreate"
Defines a custom action that runs before creating a resource. Associated with PreCreateCrudHandler
preDelete
readonlypreDelete:"preDelete"="preDelete"
Defines a custom action that runs before deleting a resource. Associated with PreDeleteCrudHandler
preUpdate
readonlypreUpdate:"preUpdate"="preUpdate"
Defines a custom action that runs before updating a resource. Associated with PreUpdateCrudHandler