Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
function sessionExitPoint(data) {
  const sessionId = data.sessionId;
  const identity = data.identity;
  // logic to retrieve session data goes here
  return sessionData;
}

exports.default = sessionExitPoint;