-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: streamline creating custom templates
- Loading branch information
1 parent
c06d540
commit 2608ec9
Showing
10 changed files
with
256 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"BypassCustomObject.txt": { | ||
"type": "object", | ||
"name": "BypassAutomation__c", | ||
"init": true | ||
}, | ||
"TriggerHandlerVirtualClass.txt": { | ||
"type": "class", | ||
"name": "TriggerHandler" | ||
}, | ||
"TriggerHandlerVirtualClass_Test.txt": { | ||
"type": "class", | ||
"name": "TriggerHandler_Test" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"BypassCustomField.txt": { | ||
"type": "field", | ||
"name": "{{sobject}}__c", | ||
"object": "BypassAutomation__c" | ||
}, | ||
"SObjectTrigger.txt": { | ||
"type": "trigger", | ||
"name": "{{sobject}}Trigger" | ||
}, | ||
"SObjectTriggerHandler.txt": { | ||
"type": "class", | ||
"name": "{{sobject}}TriggerHandler" | ||
}, | ||
"SObjectTriggerHelper.txt": { | ||
"type": "class", | ||
"name": "{{sobject}}Helper" | ||
}, | ||
"SObjectTriggerHelper_Test.txt": { | ||
"type": "class", | ||
"name": "{{sobject}}Helper_Test" | ||
} | ||
} |
Oops, something went wrong.