1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-07 06:25:21 +02:00

fix: Remove API Tokens from User APIs (#4985)

This commit is contained in:
Michael Genson 2025-01-29 13:52:12 -06:00 committed by Ian Pösse-Koch
parent 410cb6f85d
commit 123e3b3fc3
5 changed files with 41 additions and 4 deletions

View file

@ -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;