From 2866c6287702a9b3c28e1aa5189db9e4f32d48d3 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Tue, 4 Jun 2024 23:26:35 +0200 Subject: [PATCH] Add new interface to PUI interfaces --- src/frontend/src/states/states.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/frontend/src/states/states.tsx b/src/frontend/src/states/states.tsx index 03e461d5a1..544424b322 100644 --- a/src/frontend/src/states/states.tsx +++ b/src/frontend/src/states/states.tsx @@ -54,6 +54,12 @@ export interface AuthProps { providers: Provider[]; registration_enabled: boolean; password_forgotten_enabled: boolean; + mfa_urls: { + setup: string; + authenticate: string; + backup_tokens: string; + remove: string; + }; } export interface Provider {