iRoachie
iRoachie
BABetter Auth
Created by iRoachie on 3/26/2025 in #bug-reports
auth.api.getActiveMember does not have type signature for role
When using the organization plugin with custom roles the role key in api.getActiveMember is typed as a string. This same key on the authClient is typed as expected.
3 replies
BABetter Auth
Created by iRoachie on 3/26/2025 in #help
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?
3 replies
BABetter Auth
Created by iRoachie on 3/11/2025 in #help
authClient.admin.hasPermission always returns 401 unauthorized
Hey, i'm using the auth plugin, The api/auth/admin/has-permission endpoint always returns 401 even though i'm logged in. I have custom roles
import { createAccessControl } from 'better-auth/plugins/access';

/**
* make sure to use `as const` so typescript can infer the type correctly
*/
const statement = {
events: ['create', 'read', 'update', 'delete'],
event: ['manage'],
users: ['manage'],
participants: ['create', 'read', 'update', 'delete'],
} as const;

export const ac = createAccessControl(statement);

export const superAdmin = ac.newRole({
events: ['create', 'read', 'update', 'delete'],
});

export const eventAdmin = ac.newRole({
event: ['manage'],
users: ['manage'],
participants: ['create', 'read', 'update', 'delete'],
});

export const secretary = ac.newRole({
participants: ['create', 'read', 'update', 'delete'],
});

export const roles = {
superAdmin,
eventAdmin,
secretary,
};
import { createAccessControl } from 'better-auth/plugins/access';

/**
* make sure to use `as const` so typescript can infer the type correctly
*/
const statement = {
events: ['create', 'read', 'update', 'delete'],
event: ['manage'],
users: ['manage'],
participants: ['create', 'read', 'update', 'delete'],
} as const;

export const ac = createAccessControl(statement);

export const superAdmin = ac.newRole({
events: ['create', 'read', 'update', 'delete'],
});

export const eventAdmin = ac.newRole({
event: ['manage'],
users: ['manage'],
participants: ['create', 'read', 'update', 'delete'],
});

export const secretary = ac.newRole({
participants: ['create', 'read', 'update', 'delete'],
});

export const roles = {
superAdmin,
eventAdmin,
secretary,
};
7 replies