kevinohara80 / sfdc-trigger-framework

A minimal trigger framework for your Salesforce Apex Triggers
MIT License
952 stars 515 forks source link

Enabling trigger bypass without deploying code #3

Closed taralex77 closed 9 years ago

taralex77 commented 10 years ago

This change will require adding a new Custom Setting (List type) called BypassTriggerc, with one custom field: Bypassc of type CheckBox. Thus creating a custom setting record with the name exactly corresponding to the trigger handler class name and setting it’s Bypass__c field to True will effectively disable the trigger handler allowing e.g. before a data load.

kevinohara80 commented 9 years ago

Closing this. We already have a similar PR (#1) that's been open even longer than this one. Still not sure whether we want to add a custom setting or not to the framework.