Configuration
Alter CBWIRE's behavior with these nifty configuration options.
ColdBox.cfc
// File: ./config/ColdBox.cfc
component{
function configure() {
moduleSettings = {
cbwire = {
"enableTurbo": false,
"maxUploadSeconds": 5 * 60, // 5 minutes
"throwOnMissingSetterMethod" : false,
"trimStringValues": false,
"wiresLocation": "myWires",
"useComputedPropertiesProxy": false
}
};
}
}
enableTurbo
maxUploadSeconds
throwOnMissingSetter
trimStringValues
wiresLocation
useComputedPropertiesProxy
Last updated
Was this helpful?