fix: faculty users are now recognized as employees
Check Deno code / Check Deno code (push) Has been cancelled
Tests / Unit tests (push) Has been cancelled
Tests / Integration tests (push) Has been cancelled

This commit is contained in:
2026-05-05 15:29:02 +02:00
parent 0f87bc18c3
commit 49bcc3083a
19 changed files with 62 additions and 58 deletions
@@ -10,7 +10,7 @@ import {
ueModules,
ues,
} from "$root/databases/schema.ts";
import { AuthenticatedState } from "$root/defaults/interfaces.ts";
import { AuthenticatedState, isEmployee } from "$root/defaults/interfaces.ts";
import { eq } from "npm:drizzle-orm@0.45.2";
const NOT_FOUND = () =>
@@ -27,7 +27,7 @@ export const handler: Handlers<null, AuthenticatedState> = {
_request: Request,
context: FreshContext<AuthenticatedState>,
): Promise<Response> {
if (context.state.session.eduPersonPrimaryAffiliation !== "employee") {
if (!isEmployee(context.state.session)) {
return FORBIDDEN();
}
@@ -49,7 +49,7 @@ export const handler: Handlers<null, AuthenticatedState> = {
request: Request,
context: FreshContext<AuthenticatedState>,
): Promise<Response> {
if (context.state.session.eduPersonPrimaryAffiliation !== "employee") {
if (!isEmployee(context.state.session)) {
return FORBIDDEN();
}
@@ -76,7 +76,7 @@ export const handler: Handlers<null, AuthenticatedState> = {
_request: Request,
context: FreshContext<AuthenticatedState>,
): Promise<Response> {
if (context.state.session.eduPersonPrimaryAffiliation !== "employee") {
if (!isEmployee(context.state.session)) {
return FORBIDDEN();
}