Skip to content

Commit

Permalink
stash
Browse files Browse the repository at this point in the history
  • Loading branch information
szkl committed Oct 28, 2023
1 parent 2e8f8f9 commit cb6acf5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ export default () => {
scopeMeta: ScopeMeta
}>()

console.log({ scopeValues })

const modeledScopes = useMemo(() => {
const aggregator = []

Expand Down
2 changes: 1 addition & 1 deletion apps/profile/app/utils/session.server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class RollupAuthStrategy<User> extends OAuth2Strategy<
> {
protected authorizationParams(params: URLSearchParams): URLSearchParams {
const result = new URLSearchParams()
result.append('scope', 'openid profile connected_accounts')
result.append('scope', 'openid profile connected_accounts email')
return result
}
}
Expand Down

0 comments on commit cb6acf5

Please sign in to comment.