mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-25 06:16:40 +00:00
23 lines
638 B
TypeScript
23 lines
638 B
TypeScript
import { db, userOrgRoles } from "@server/db";
|
|
import { and, eq } from "drizzle-orm";
|
|
|
|
/**
|
|
* Get all role IDs a user has in an organization.
|
|
* Returns empty array if the user has no roles in the org (callers must treat as no access).
|
|
*/
|
|
export async function getUserOrgRoleIds(
|
|
userId: string,
|
|
orgId: string
|
|
): Promise<number[]> {
|
|
const rows = await db
|
|
.select({ roleId: userOrgRoles.roleId })
|
|
.from(userOrgRoles)
|
|
.where(
|
|
and(
|
|
eq(userOrgRoles.userId, userId),
|
|
eq(userOrgRoles.orgId, orgId)
|
|
)
|
|
);
|
|
return rows.map((r) => r.roleId);
|
|
}
|