add s3 and local dir support, fix session roles, make sure delete invite checks if its valid first
This commit is contained in:
parent
9a91f1e7e3
commit
774c8e22ce
11 changed files with 171 additions and 12 deletions
5
types/config.d.ts
vendored
5
types/config.d.ts
vendored
|
@ -8,3 +8,8 @@ type UserValidation = {
|
|||
check: { valid: boolean; error?: string };
|
||||
field: string;
|
||||
};
|
||||
|
||||
type Setting = {
|
||||
key: string;
|
||||
value: string;
|
||||
};
|
||||
|
|
2
types/session.d.ts
vendored
2
types/session.d.ts
vendored
|
@ -21,7 +21,7 @@ type User = {
|
|||
email_verified: boolean;
|
||||
password: string;
|
||||
avatar: boolean;
|
||||
roles: string[];
|
||||
roles: string;
|
||||
timezone: string;
|
||||
invited_by: UUID;
|
||||
created_at: Date;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue