Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save choudharymanish8585/06d2e639250d4574093c9a66483852ca to your computer and use it in GitHub Desktop.
Save choudharymanish8585/06d2e639250d4574093c9a66483852ca to your computer and use it in GitHub Desktop.
public class RecordChangeCaptureLightningController {
@AuraEnabled
public static String getUserName(Id userId){
User u = [SELECT Name FROM User WHERE Id=:userId];
return u.Name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment