feat: update auth
Publish Metadata Agent Image / build-and-push-image (push) Successful in 1m5s
Publish Node Player Image / build-and-push-image (push) Failing after 17s
Publish Web Player Image / build-and-push-image (push) Successful in 1m19s

This commit is contained in:
Boris Cherepanov
2026-04-19 21:50:38 +03:00
parent df8d8f0d73
commit bafa3e0ec0
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ function App() {
useEffect(() => {
const loadMe = async () => {
try {
const response = await fetch(`/api/me`, {
const response = await fetch(`/auth/me`, {
credentials: 'include',
})
+3
View File
@@ -26,6 +26,9 @@ const oidcConfig = {
response_type: 'code',
scope: process.env.OIDC_SCOPE ?? 'openid profile email offline_access',
},
routes: {
callback: process.env.OIDC_REDIRECT_URL
}
};
if (!disableAuth && (!oidcConfig.clientID || !oidcConfig.issuerBaseURL || !oidcConfig.clientSecret)) {