Add query param because of some browsers not sending the referrer

This commit is contained in:
2023-10-19 16:51:09 -04:00
parent 9bb2d7396d
commit c7d1e4bd53
2 changed files with 7 additions and 1 deletions

View File

@ -1,7 +1,7 @@
export async function onRequestGet(_context: RequestContext) {
return new Response(null, {
headers: {
location: "/api/auth/oauth",
location: "/api/auth/oauth?type=mobile",
},
status: 302,
});