Skip to content

Commit

Permalink
tester skup-backend igjen
Browse files Browse the repository at this point in the history
  • Loading branch information
eilifjohansen committed Jan 14, 2025
1 parent 91983dc commit c7b7132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/oboread/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export async function GET(request: Request) {
return NextResponse.json({ error: 'Token validation failed' }, { status: 401 });
}

const obo = await requestOboToken(token, 'api://prod-gcp.team-researchops.skup/.default');
const obo = await requestOboToken(token, 'api://prod-gcp.team-researchops.skup-backend/.default');
if (!obo.ok) {
return NextResponse.json({ error: 'OBO token request failed' }, { status: 401 });
}
Expand Down

0 comments on commit c7b7132

Please sign in to comment.