Created
June 27, 2018 11:15
-
-
Save manzanit0/e785d19759150e94484348a8eb5dabeb 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