This gist contains multiple files. Each file contains a specific type of Apex or Visualforce comment header.
When code is no longer used, but can not be deleted from your org, add the @deprecated
annotation to the File or Method Header.
<script src="https://YOUR-SALESFORCE-SITE-URL.com/lightning/lightning.out.js"></script> | |
<div id="lightningLocator"></div> | |
<script> | |
$Lightning.use("c:embedFlowInExternalWebsiteApp", | |
function() { | |
$Lightning.createComponent( | |
"c:embedFlowInExternalWebsite", | |
{ }, |
<aura:application access="GLOBAL" extends="ltng:outApp" implements="ltng:allowGuestAccess"> | |
<aura:dependency resource="c:embedFlowInExternalWebsite"/> | |
</aura:application> |
({ | |
init : function (component) { | |
var flow = component.find("flowData"); | |
flow.startFlow("YOUR_FLOW_API_NAME"); | |
} | |
}) |
<aura:component implements="flexipage:availableForAllPageTypes,lightning:availableForFlowActions" access="GLOBAL"> | |
<aura:handler name="init" value="{!this}" action="{!c.init}" /> | |
<lightning:flow aura:id="flowData"/> | |
</aura:component> |
This gist contains multiple files. Each file contains a specific type of Apex or Visualforce comment header.
When code is no longer used, but can not be deleted from your org, add the @deprecated
annotation to the File or Method Header.
/** | |
* @Name RecordOwnerVerification | |
* @Author Kicksaw Consulting, Ryan Mercer | |
* @Date 2021-06-14 | |
* @Description Pass the record you would like to check, and we will update the record with the fallback User if the original owner is inactive (returning only the active User). | |
*/ | |
global class RecordOwnerVerification{ | |
/** | |
* Main method doing the heavy lifting | |
*/ |
/** | |
* @Name: ESP | |
* @Author: Kicksaw | |
* @Date: 2021-08-02 | |
* @Description: An Account's stack maturity is determined by the bucket in which their email service provider (ESP) is in. | |
* This class controls the Batchable, Schedulable, and Utility logic surrounding the automation. | |
* | |
********************************************************* CHANGE HISTORY ********************************************************* | |
* ModifiedBy Date Reference Num Description | |
* -------------------------------------------------------------------------------------------------------------------------------- |
/** | |
* @Name: QuickBooksCustomer | |
* @Author: Kicksaw | |
* @Date: 2021-08-04 | |
* @Description: Create QuickBooks Customers from Salesforce Accounts | |
* | |
********************************************************* CHANGE HISTORY ********************************************************* | |
* ModifiedBy Date Reference Num Description | |
* -------------------------------------------------------------------------------------------------------------------------------- | |
* Kicksaw, Ryan Mercer 2021-08-04 1 Initial Version |
/** | |
* @description : Runs the duplicate rules on a particular record or recordId to see if a duplicate record exists. | |
* @author : Ryan Mercer | |
* @group : Kicksaw | |
* @last modified on : 11-27-2021 | |
**/ | |
public with sharing class DuplicateRecordCheck{ | |
/** | |
* @description Invocable Method that runs the duplicate rules on a particular record or recordId to see if a duplicate record exists. |
/** | |
* @Name: calendly | |
* @Author: Kicksaw, Ryan Mercer | |
* @Date: 2021-06-22 | |
* @Description: Map the CalendlyAction__c custom questions & responses to their appropriate warehouse. | |
*/ | |
global class calendly{ | |
/** | |
* @Description Map the CalendlyAction__c custom questions & responses to their appropriate warehouse. | |
* @Param inputs - List<InputParameters> |