Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding scopes or Roles/permissions #24

Open
Master-Y0da opened this issue Feb 29, 2024 · 1 comment
Open

Adding scopes or Roles/permissions #24

Master-Y0da opened this issue Feb 29, 2024 · 1 comment

Comments

@Master-Y0da
Copy link

I'm trying to use this plugin...but can't find a way or configuration that enable the use of scopes asigned to the generated JWT...is this possible ?

thanks for your help!

@justin13888
Copy link

I think you could just specify the payload using the schema field.

Here's a random example I had:

export const jwtRefreshSetup = new Elysia().use(jwt({
    name: 'jwtRefresh',
    alg: 'HS256',
    secret: 'fjdfkdjfdkfjdkjdkfjkfjkfjd',
    schema: t.Object({
        id: t.String(),
       scope: t.Array(t.Union([
            t.Literal('profile'),
            t.Literal('media'),
            t.Literal('admin'),
        ])),
    }),
    iss: JWT_ISSUER,
    exp: JWT_REFRESH_TOKEN_DURATION,
    type: 'refresh',
}));

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants