zenstack icon indicating copy to clipboard operation
zenstack copied to clipboard

Typescript toolkit on top of Prisma ORM, offering flexible and declarative Access Control Policy(Authorization/Permission) for RBAC/ABAC/PBAC/ReBAC with auto-generated type-safe APIs and frontend hook...

Results 261 zenstack issues
Sort by recently updated
recently updated
newest added

I tried to add ZenStack to my existing NextJS project. It's brand new with create-next-app@latest. All I do is run these 2 commands and it fails. ```shell npx zenstack@latest init...

**Description and expected behavior** I started the development of a Nuxt application and after defining my zenstack schema, I wrote an API route for the server to retrieve a file...

**Description and expected behavior** When creating a new model, I tried copying an existing model or really anything within a .zmodel file and it will initially paste but them immediately...

**Is your feature request related to a problem? Please describe.** Not really a problem but a nice-to-have. Currently, I'm trying to create a global "logger" for any Prisma operation (model,...

I want to able to customize enum field validation message (for zod schema generation in my case) in a cleaner way. Currently the only workaround is converting the enum to...

**Is your feature request related to a problem? Please describe.** When adding or updating an existing validation, for example the password field in the user model, the user cannot update...

Would you be open to this feature (or something similar)? I have a use case where I want to make a large number of modifications to the schema based on...

**Is your feature request related to a problem? Please describe.** I'm using bitflags for a permission system, but I can't tie that in with Zenstack's access policies without bitwise operators....

**Description and expected behavior** Nested update operation throw error when is not the data argument is not provided **Screenshots** ```typescript //THIS WORKS await prisma.user.update({ where: {id: 1}, data: { video:...

Hi, I'm encountering an issue when trying to import a model from an NPM package into my ZenStack project. The import works fine when using a relative path, but fails...