Methods
-
start( data )
-
Description
Called at route startParameters
Name Type Description data
object Name Type Description req
object Request - See expressjs definition res
object Response - See expressjs definition transaction
object Database transaction. Use this transaction in your hooks. Commit and rollback are handled through res.success() / res.error() idEntity
number Id of entity to update Details
-
beforeUpdate( data )
-
Description
Called before entity update in databaseParameters
Name Type Description data
object Name Type Description req
object Request - See expressjs definition res
object Response - See expressjs definition transaction
object Database transaction. Use this transaction in your hooks. Commit and rollback are handled through res.success() / res.error() updateObject
object Parsed form values used to update row in database updateAssociations
Array.<CoreEntity.associationObject> Associations array files
Array.<CoreEntity.fileObject> Array of files parsed from body Details
-
beforeRedirect( data )
-
Description
Called before redirecting to data.redirectParameters
Name Type Description data
object Name Type Description req
object Request - See expressjs definition res
object Response - See expressjs definition transaction
object Database transaction. Use this transaction in your hooks. Commit and rollback are handled through res.success() / res.error() updateObject
object Parsed form values used to update row in database updateAssociations
Array.<CoreEntity.associationObject> Associations array files
Array.<CoreEntity.fileObject> Array of files parsed from body Details