mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
const GITHUB_OAUTH_AUTHORIZE_URL = 'https://github.com/login/oauth/authorize';
|
|
|
|
export async function GET({params, request}) {
|
|
|
|
console.log('Authorized', params);
|
|
|
|
|
|
return new Response({
|
|
status: 302,
|
|
path: `/`,
|
|
});
|
|
}
|