SamiAlsubhi

Results 7 comments of SamiAlsubhi

Thank you @IndominusByte 😄 . I am excited for this. If I may suggest this feature as well: sometimes you want the user_id to override the scopes required for an...

I have made this modification in order to check for permissions, it works both in http and ws: ``` class NotEnoughPermissions(AuthJWTException): def __init__(self,status_code: int, message: str): self.status_code = status_code self.message...

@IndominusByte I made a [PR](https://github.com/IndominusByte/fastapi-jwt-auth/pull/40). It is an initial proposal. In the PR, all token scopes must meet required scopes by supplying `scopes` parameter optionally in **jwt_required(), jwt_optional(), fresh_jwt_required() and...

aioredis 2.0 is not finalized and not stable yet.

I have the same issue on 3.2.0, sound plays once and does not loop. Any workaround? ```dart class WaitingDriverResPanel extends ConsumerStatefulWidget { const WaitingDriverResPanel({Key? key}) : super(key: key); @override _WaitingDriverResPanelState...

I think there is an issue with `TileClient.Keys.Get("key","id", true)`. It returns a result but without lat and lon. There are `nil`. so I resorted to `TileClient.Execute("GET", "key", "id", "POINT")` which...

Thanks @NikosTsesmelis I have a variant padding depending on the state of the app. Apparently the initial padding will not be reflected as map is not created yet. This is...