mirror of
https://github.com/go-gitea/gitea.git
synced 2025-04-22 01:18:45 +03:00
@ -1,5 +1,5 @@
|
|||||||
import {encodeURLEncodedBase64, decodeURLEncodedBase64} from '../utils.ts';
|
import {encodeURLEncodedBase64, decodeURLEncodedBase64} from '../utils.ts';
|
||||||
import {showElem} from '../utils/dom.ts';
|
import {hideElem, showElem} from '../utils/dom.ts';
|
||||||
import {GET, POST} from '../modules/fetch.ts';
|
import {GET, POST} from '../modules/fetch.ts';
|
||||||
|
|
||||||
const {appSubUrl} = window.config;
|
const {appSubUrl} = window.config;
|
||||||
@ -11,6 +11,15 @@ export async function initUserAuthWebAuthn() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (window.location.protocol === 'http:') {
|
||||||
|
// webauthn is only supported on secure contexts
|
||||||
|
const isLocalhost = ['localhost', '127.0.0.1'].includes(window.location.hostname);
|
||||||
|
if (!isLocalhost) {
|
||||||
|
hideElem(elSignInPasskeyBtn);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!detectWebAuthnSupport()) {
|
if (!detectWebAuthnSupport()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user