feat(frontend): manage API tokens in Frontend

This commit is contained in:
Julian Tölle 2023-02-20 23:50:57 +01:00
parent d0ca2b967e
commit ac0f9ff5d3
13 changed files with 484 additions and 33 deletions

View file

@ -0,0 +1,7 @@
export interface ApiTokenDto {
id: string;
description: string;
prefix: string;
createdAt: Date;
revokedAt: Date | null;
}

View file

@ -0,0 +1,6 @@
export interface NewApiTokenDto {
id: string;
description: string;
token: string;
createdAt: Date;
}