-
-
Save iamthefbi/cd5b2f4bc77491878af7b2b3d14a7061 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| global class PrepareMySandbox implements SandboxPostCopy { | |
| global void runApexClass(SandboxContext context) { | |
| System.debug('Org ID: ' + context.organizationId()); | |
| System.debug('Sandbox ID: ' + context.sandboxId()); | |
| System.debug('Sandbox Name: ' + context.sandboxName()); | |
| // Insert logic here to prepare the sandbox for use. | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment