Skip to content

Instantly share code, notes, and snippets.

@adampresley
Created June 17, 2023 16:44
Show Gist options
  • Select an option

  • Save adampresley/aa5bddd127f0325b0c7cd843e4efa21a to your computer and use it in GitHub Desktop.

Select an option

Save adampresley/aa5bddd127f0325b0c7cd843e4efa21a to your computer and use it in GitHub Desktop.
export function people_beforeInsert(item, context) {
item.fullName = `${item.firstName} ${item.lastName}`;
return item;
}
export function people_beforeUpdate(item, context) {
item.fullName = `${item.firstName} ${item.lastName}`;
return item;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment