Display keys in login screen

This commit is contained in:
2021-05-14 11:25:50 +02:00
parent 9516190084
commit 34c07bfac8
2 changed files with 28 additions and 8 deletions

View File

@ -10,8 +10,14 @@ import {
} from "../utils/Base64Utils";
import { serverRequest } from "./APIHelper";
export interface AuthKey {
name: string;
id: number;
}
export interface AuthOptions {
reset_token: string;
keys: AuthKey[];
}
export interface AdminAccount {