added ability to use invite link more than once

This commit is contained in:
vabene1111
2022-07-14 11:28:13 +02:00
parent 98a54ef38f
commit ba473123ba
7 changed files with 59 additions and 15 deletions

View File

@@ -1357,6 +1357,12 @@ export interface InviteLink {
* @memberof InviteLink
*/
used_by?: number | null;
/**
*
* @type {boolean}
* @memberof InviteLink
*/
reusable?: boolean;
/**
*
* @type {string}
@@ -1893,6 +1899,18 @@ export interface Recipe {
* @memberof Recipe
*/
last_cooked?: string;
/**
*
* @type {boolean}
* @memberof Recipe
*/
_private?: boolean;
/**
*
* @type {Array<CustomFilterShared>}
* @memberof Recipe
*/
shared?: Array<CustomFilterShared>;
}
/**
*