How to get type for permissions
I'm using the organisation plugin and i have created some custom roles.
On the client I have a sidebar where some items are gated depending on the role of the member. So i don't have to go back to the server multiple times, im calling
getActiveMember
in my layout and passing the role of the active member into the sidebar and then making use of authClient.organization.checkRolePermission
.
I'd like to specify in a central location all my sidebar items and groups and what permissions are needed to access the page.
Is there a way I can get the permission
type signature from the checkRolePermission
method?1 Reply
Currently doing this
Parameters<typeof authClient.organization.checkRolePermission>[0]['permission']
Would be great to have this like authClient.$Infer.Permission