Created
December 15, 2021 10:38
-
-
Save tjmonsi/9a57cd613262252ea6369dc1df2cb60f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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