1
0
Fork 0
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:
Michael Genson 2025-01-29 13:52:12 -06:00 committed by GitHub
parent f2eadd2908
commit cb05adeb48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;