We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f32a7e commit c476d5fCopy full SHA for c476d5f
src/FusionAuthClient.ts
@@ -7587,6 +7587,7 @@ export interface Tenant {
7587
issuer?: string;
7588
jwtConfiguration?: JWTConfiguration;
7589
lastUpdateInstant?: number;
7590
+ loginConfiguration?: TenantLoginConfiguration;
7591
logoutURL?: string;
7592
maximumPasswordAge?: MaximumPasswordAge;
7593
minimumPasswordAge?: MinimumPasswordAge;
@@ -7612,6 +7613,13 @@ export interface TenantFormConfiguration {
7612
7613
adminUserFormId?: UUID;
7614
}
7615
7616
+/**
7617
+ * @author Daniel DeGroff
7618
+ */
7619
+export interface TenantLoginConfiguration {
7620
+ requireAuthentication?: boolean;
7621
+}
7622
+
7623
/**
7624
* @author Mikey Sleevi
7625
*/
0 commit comments