add s3 and local dir support, fix session roles, make sure delete invite checks if its valid first

This commit is contained in:
creations 2025-03-05 08:45:08 -05:00
parent 9a91f1e7e3
commit 774c8e22ce
Signed by: creations
GPG key ID: 8F553AA4320FC711
11 changed files with 171 additions and 12 deletions

5
types/config.d.ts vendored
View file

@ -8,3 +8,8 @@ type UserValidation = {
check: { valid: boolean; error?: string };
field: string;
};
type Setting = {
key: string;
value: string;
};