We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents efa63c5 + 3f09bbe commit 027db73Copy full SHA for 027db73
src/index.jsx
@@ -28,7 +28,7 @@ export function Auth0(props) {
28
const [userId, setUserId] = createSignal('')
29
const [organization, setOrganization] = createSignal()
30
31
- const scopes = ['openid', 'profile']
+ const scopes = ['openid', 'profile', 'email']
32
if (import.meta.env.VITE_AUTH0_OFFLINE_ACCESS === 'true') {
33
scopes.push('offline_access')
34
}
src/types/solid-start.d.ts
@@ -8,6 +8,8 @@ declare module 'solid-start/session/sessions' {
8
picture: string
9
updated_at: string
10
org_id: string
11
+ email: string
12
+ email_verified: boolean
13
14
15
/*
0 commit comments