Skip to content

Instantly share code, notes, and snippets.

@tjmonsi
Created December 15, 2021 10:38
Show Gist options
  • Save tjmonsi/9a57cd613262252ea6369dc1df2cb60f to your computer and use it in GitHub Desktop.
Save tjmonsi/9a57cd613262252ea6369dc1df2cb60f to your computer and use it in GitHub Desktop.
export async function checkAuth (request) {
const { user } = request;
const { username } = user;
return {
success: true,
username
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment