This commit is contained in:
2025-08-21 15:34:33 +02:00
parent 4301da7dae
commit 63998a9859
3 changed files with 7 additions and 1 deletions

View File

@@ -30,3 +30,4 @@ export * from "./interfaces/confirmation-requests";
export * from "./interfaces/generic-user";
export * from "./interfaces/adult";
export * from "./interfaces/team-manager";
export * from "./interfaces/confirmation-request/confirmation-request-status";

View File

@@ -0,0 +1,5 @@
export enum ConfirmationRequestStatus {
PENDING = 1,
APPROVED = 2,
DECLINED = 3,
}