fix(security): isActive defense-in-depth, MIME magic bytes upload, tenantId=origins OAuth
All checks were successful
CI/CD — Build & Deploy / Build & Deploy (push) Successful in 54s

This commit is contained in:
2026-03-15 17:34:19 +01:00
parent ef4c23d6a2
commit 379a9a115b
3 changed files with 30 additions and 1 deletions

View File

@@ -27,7 +27,7 @@ export default function LoginPage() {
function handleOAuth(providerId: string) {
if (oauthLoading) return;
setOauthLoading(providerId);
window.location.href = `${base}/api/v1/oauth/${providerId}?redirectUrl=${redirectUrl}`;
window.location.href = `${base}/api/v1/oauth/${providerId}?redirectUrl=${redirectUrl}&tenantId=origins`;
}
async function handleSubmit(e: React.FormEvent) {