diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index b21448c..b6a09dd 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -196,7 +196,6 @@ Module settings are defined in `ModuleConfig.cfc`: - `autoInjectAssets` - Auto-include CSS/JS assets (default: `true`) - `moduleRootPath` - Physical path to module (computed from module location) - `moduleRootURL` - URL to module root (default: `"/modules/cbwire"`) -- `throwOnMissingSetterMethod` - Throw exception on missing setters (default: `false`) - `wiresLocation` - Folder name for wire components (default: `"wires"`) - `trimStringValues` - Trim string properties (default: `false`) - `showProgressBar` - Enable progress bar with wire:navigate (default: `true`) diff --git a/ModuleConfig.cfc b/ModuleConfig.cfc index f673803..3d4d271 100644 --- a/ModuleConfig.cfc +++ b/ModuleConfig.cfc @@ -38,12 +38,6 @@ component { * The URL to the module root. The sometimes needs to be overridden for certain server configurations. */ "moduleRootURL": "/modules/cbwire", - /** - * Set to true to throw a 'WireSetterNotFound' exception if - * the incoming cbwire request tries to update a property - * without a setter on our component. Otherwise, missing setters are ignored. - */ - "throwOnMissingSetterMethod" : false, /** * The default folder name where your cbwire components are stored. * Defaults to 'wires' folder.