Skip to content

Instantly share code, notes, and snippets.

@emoran
emoran / AccountApprovalClone.page
Created March 11, 2022 15:15
Approval History Clone for Salesforce Account. Allows to show the Approval History for an Object.
<apex:page standardController="Account" extensions="AccountApprovalCloneExtension" >
<apex:pageBlock title="Approval History Clone">
<table class="list" border="0" cellspacing="0">
<tbody>
<tr class="headerRow">
<th class="actionColumn" scope="col">Action</th>
<th scope="col" class=" zen-deemphasize">Date</th>
<th scope="col" class=" zen-deemphasize">Status</th>
<!--<th scope="col" class=" zen-deemphasize">Assigned To</th>-->
@benbjurstrom
benbjurstrom / Code.gs
Last active June 9, 2024 00:47
PurgeOldEmails
/*
|--------------------------------------------------------------------------
| PurgeOldEmails
|--------------------------------------------------------------------------
| https://gist.github.com/benbjurstrom/00cdfdb24e39c59c124e812d5effa39a
|
*/
// Purge messages automatically after how many days?
var DELETE_AFTER_DAYS = 7