Move creator into events structure

This commit is contained in:
Roman Krček
2025-06-27 22:39:54 +02:00
parent 4d8e65f280
commit fe688de59c
12 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ export const GET: RequestHandler = async ({ url }) => {
const html = `
<script>
localStorage.setItem('gmail_refresh_token', ${JSON.stringify(refreshToken)});
location = '/private/creator';
location = '/private/events/creator';
</script>`;
return new Response(html, { headers: { 'Content-Type': 'text/html' } });
} catch (err) {