Revived the page! He's baaaaack

This commit is contained in:
2026-01-27 10:01:41 -05:00
parent 7c7cbef3f3
commit 67562f56aa
9 changed files with 469 additions and 95 deletions

View File

@@ -1,10 +1,13 @@
import { LOARequest } from "./loa";
import { Role } from "./roles";
import { PagedData } from "./pagination";
export interface memberSettings {
displayName: string;
}
export type PaginatedMembers = PagedData<Member>;
export enum MemberState {
Guest = "guest",
Applicant = "applicant",

7
shared/types/units.ts Normal file
View File

@@ -0,0 +1,7 @@
export interface Unit {
id: number;
name: string;
description?: string;
active: boolean;
color?: string;
}