Rajdip Bhattacharya
Rajdip Bhattacharya
## Description Add a feature that will enforce security of the workspaces by blocking users from accessing it if their IP addresses are in the blacklist. We would support both...
## Description Our docs don't include any information on how to run the `web` package locally. We would want to add that. ## Solution You can refer the [running-the-api.md] file...
## Description Any user that gets created, gets a default workspace associated with them. We don't want admin accounts to get a default workspace. ## Solution - Add a `if`...
## Description The authority check input in `authority-checker.service.ts` file currently takes the following interface as its input type: ```ts AuthorityInput { userId: string entity: { id?: string name?: string }...
## Description keyshade uses stateless cookie-based authentication to let users in. In the long run, this will impose a strain on our database since we will have over 100qps. To...
## Description Currently, whenever we try to run tests, the scripts re-compile the `build` phase and `test:unit` phase of API over and over again. We would like to use turbo...
## Description Currently, the endpoints that fetch paginated data does not provide any upper limit to the page size. We need to put a limit to that to make sure...
## Description We would like our users to receive notifications on their favorite application (Discord/Slack/etc.). Hence, we would like to dedicate considerable amount of time to this module. **Please note...
## Description This is the error we are facing right now: ``` warn Versions of [email protected] and @prisma/[email protected] don't match. This might lead to unexpected behavior. Please make sure they...
## Description Accessing environmental variables from using `process.env.NAME` is a pain. To ease reusability of these environments, and proper inference, we would like to add an object that will fetch...