Skip to content

Instantly share code, notes, and snippets.

@winniecluk
Created February 24, 2017 18:05
Show Gist options
  • Save winniecluk/aa4fad06756366ccb45d08f18c8494e4 to your computer and use it in GitHub Desktop.
Save winniecluk/aa4fad06756366ccb45d08f18c8494e4 to your computer and use it in GitHub Desktop.
@AuraEnabled
public static String getUserName(String i){
String firstName = UserInfo.getFirstName();
String lastName = UserInfo.getLastName();
String fullName = firstName + ' ' + lastName;
return fullName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment