Configuration
Change the internal behavior of CBWIRE as needed.
ColdBox.cfc
// File: ./config/ColdBox.cfc
component{
function configure() {
moduleSettings = {
cbwire = {
"autoInjectAssets": false,
"cacheSingleFileComponents": false,
"enableTurbo": false,
"maxUploadSeconds": 5 * 60, // 5 minutes
"throwOnMissingSetterMethod" : false,
"trimStringValues": false,
"wiresLocation": "wires"
}
};
}
}
autoInjectAssets
cacheSingleFileComponents
enableTurbo
maxUploadSeconds
throwOnMissingSetter
trimStringValues
wiresLocation
Last updated