Skip to content

Commit

Permalink
fix: add offline_access to scope
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanvanherwijnen committed Oct 26, 2024
1 parent 92f4d2d commit 6f8e993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/src/setup.ts
Original file line number Diff line number Diff line change
@@ -197,7 +197,7 @@ export default async function (fastify: FastifyInstance) {
client_name: 'Petboarding',
logo_uri: 'https://www.petboarding.app/logo.png',
grant_types: ['authorization_code', 'refresh_token'],
scope: 'openid profile email api',
scope: 'openid offline_access profile email api',
client_secret: 'secret',
redirect_uris: [`https://${petboardingClientHostname}/callback/slimfact`],
token_endpoint_auth_method: 'none',

0 comments on commit 6f8e993

Please sign in to comment.