()
| 231 | } |
| 232 | |
| 233 | function applyProxyBypassUI() { |
| 234 | const bypass = localStorage.getItem("authBypass") === "true"; |
| 235 | const loginContainer = document.getElementById("loginForm"); |
| 236 | if (loginContainer) { |
| 237 | loginContainer.style.display = bypass ? "none" : ""; |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | function updateLoginOptionsUI({ disableFormLogin, disableBasicAuth, disableOIDCLogin }) { |
| 242 | const authForm = document.getElementById("authForm"); |
no outgoing calls
no test coverage detected