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
| <lightning-input name="input5" label="Sample text" class="slds-p-bottom_medium" data-field="text" ></lightning-input> | |
| <lightning-button variant="brand" label="Copy text" title="Share Guide" icon-name="utility:copy" | |
| onclick={copyTextToClipboard} class="js-copy-btn slds-m-left_x-small"></lightning-button> |
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
| public class AutoGenerateSurveyLinkController { | |
| @AuraEnabled | |
| public static String generateSurveyInvitationLink(String relatedObjectRecordId) { | |
| String returnString; | |
| Boolean isAllowed; | |
| isAllowed = checkAdminPermission(); | |
| if(isAllowed) { | |
| returnString = helperMethod(relatedObjectRecordId); |
OlderNewer