Camin McCluskey

Results 20 comments of Camin McCluskey

@hzlmn was any progress made on this - ideally we would like to use python-jose as we could pass a dict of jwks urls with that library. Or do you...

@hzlmn thanks for your prompt response! Essentially a more close alignment with the [auth0/express-jwt](https://github.com/auth0/express-jwt) library would be great. Particularly the 'multi-tenancy' idea of allowing multiple jwks urls to verify against....

Hey @hzlmn thanks for looking into that, it would be really helpful for us! Apologies but can you point me in the direction of an example of decorators for this...

@hzlmn perfect, thanks! Just FYI, the example given throws an exception - `RuntimeError: ('Incorrect usage of decorator.', 'Please initialize middleware first')`. I found to make this go away I needed...

In case anyone is seeing hundreds of errors, is waiting on this fix to be merged (and uses pytest) adding the following to a `pytest.ini` file will suppress these warnings:...

This is possible, you need to pass through your validator to Marshmallow via the `mm_field` param: ``` description: str = field(default=None, required=False, metadata=config(mm_field=fields.Field(validate=Length(max=1024))) ```

Also struggling with this using graphql subscriptions within react native. ``` graphqlOperation(onCreateMessage, {messageHouseId: this.props.house.id}) ).subscribe({ next: (message) => { const messageObj = message.value.data.onCreateMessage; const { user_id : sender_id } =...

@Pocoyo-dev awesome work - 1 question, how would this work with multiple users? I assume you'd need some way to store the tokens against an id for each user? I...

Seems like issues affect iOS in release mode also

Just had this issue and realised I was importing `CommandInput` from `cmdk` rather than from Shadcn. This was causing the LHS clipping issue @jsgv notes above. Import from `cmdk` ![Screenshot...