mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-04 21:15:22 +02:00
fix: Remove API Tokens from User APIs (#4985)
This commit is contained in:
parent
f2eadd2908
commit
cb05adeb48
5 changed files with 41 additions and 4 deletions
|
@ -93,6 +93,12 @@ export interface GroupSummary {
|
|||
slug: string;
|
||||
preferences?: ReadGroupPreferences | null;
|
||||
}
|
||||
export interface LongLiveTokenCreateResponse {
|
||||
name: string;
|
||||
id: number;
|
||||
createdAt?: string | null;
|
||||
token: string;
|
||||
}
|
||||
export interface LongLiveTokenIn {
|
||||
name: string;
|
||||
integrationId?: string;
|
||||
|
@ -130,7 +136,6 @@ export interface PrivateUser {
|
|||
lockedAt?: string | null;
|
||||
}
|
||||
export interface LongLiveTokenOut {
|
||||
token: string;
|
||||
name: string;
|
||||
id: number;
|
||||
createdAt?: string | null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue