web/admin: show GeoIP information inline in events

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens Langhammer
2023-01-09 16:01:00 +01:00
parent a1be924fa4
commit d1aa1f46da
2 changed files with 8 additions and 5 deletions

View File

@ -1,4 +1,5 @@
import { AKElement } from "@goauthentik/elements/Base";
import { KeyUnknown } from "@goauthentik/elements/forms/Form";
import { TemplateResult, html } from "lit";
import { property } from "lit/decorators.js";
@ -25,10 +26,6 @@ export function readFileAsync(file: Blob) {
});
}
export type KeyUnknown = {
[key: string]: unknown;
};
export class BaseStage<Tin, Tout> extends AKElement {
host!: StageHost;