Dynamically create Role and Permission.
Can anyone tell how to create role and permissions programatically? Such as from admin dashboard. In the doc, it shows how to create access controller and pass it to auth configuration
But if I want to create these role from admin dashboard along with permissions, how do I do it?
5 Replies
Could you try creating a new endpoint in your server which just gets
ac
from your @/auth/permissions
and then use ac.newRole
to add new role/perms?
FYI, I've never tried this out, so we'll have to test this theory and see how it goes.
Tried this way, though it gives a successful response, but I guess, still it is required to pass this newRole to betterAuth configuration,
Since, better auth requires them on initialization time. So then I tried this way by using
roles
object and pass it as reference.
===============
It works, but only as long as the server is up. Once we close the server its gone. Since, it is not being stored anywhere in the database, so I guess currently we cannot dynamically manage creating roles , permissions in Better Auth?
@PingSo I guess currently we cannot dynamically manage creating roles , permissions in Better Auth?Yeah I don't think so.
Once we close the server its gone. Since, it is not being stored anywhere in the database,I guess the next step is to store it in the database 😁 I do think further consideration should be done regarding Better Auth natively supporting dynamic roles/perms. Wdyt @bekacru
Yeah, can store them on DB but seems too much work. If Better Auth could provide a native api for this that would be awesome.
I have another question regarding social login. I'll mention you in the thread, please take a look if you can. Thanks!
yeah we'll in the future