update invite schema
This commit is contained in:
parent
5a0351aa05
commit
8599b25a37
@ -1,4 +1,7 @@
|
||||
export const InviteCreateSchema = {
|
||||
$target_user_id: String,
|
||||
$target_type: String,
|
||||
$validate: String, //? wtf is this
|
||||
$max_age: Number,
|
||||
$max_uses: Number,
|
||||
$temporary: Boolean,
|
||||
@ -7,6 +10,9 @@ export const InviteCreateSchema = {
|
||||
$target_user_type: Number,
|
||||
};
|
||||
export interface InviteCreateSchema {
|
||||
target_user_id?: String;
|
||||
target_type?: String;
|
||||
validate?: String; //? wtf is this
|
||||
max_age?: Number;
|
||||
max_uses?: Number;
|
||||
temporary?: Boolean;
|
||||
|
Loading…
x
Reference in New Issue
Block a user