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

View File

@@ -1763,7 +1763,7 @@ export async function updateRegistrationAllowed(
export async function updatePasswordLoginAllowed(
allowed: boolean,
): Promise<any> {
): Promise<{ allowed: boolean }> {
try {
const response = await authApi.patch("/users/password-login-allowed", {
allowed,