Feature disable password login #378

Merged
LukeGus merged 6 commits from feature-disable-password-login into dev-1.8.0 2025-10-08 00:59:44 +00:00
Showing only changes of commit 11ac64ccf7 - Show all commits
+1 -1
View File
1
@@ -1763,7 +1763,7 @@ export async function updateRegistrationAllowed(
export async function updatePasswordLoginAllowed( export async function updatePasswordLoginAllowed(
allowed: boolean, allowed: boolean,
): Promise<any> { ): Promise<{ allowed: boolean }> {
try { try {
const response = await authApi.patch("/users/password-login-allowed", { const response = await authApi.patch("/users/password-login-allowed", {
allowed, allowed,