Make it public!

This commit is contained in:
Bruno Bernardino
2024-03-16 08:40:24 +00:00
commit a5cafdddca
114 changed files with 9569 additions and 0 deletions

15
routes/index.tsx Normal file
View File

@@ -0,0 +1,15 @@
import { Handlers } from 'fresh/server.ts';
import { FreshContextState } from '/lib/types.ts';
interface Data {}
export const handler: Handlers<Data, FreshContextState> = {
GET(request, context) {
if (context.state.user) {
return new Response('Redirect', { status: 303, headers: { 'Location': `/dashboard` } });
}
return new Response('Redirect', { status: 303, headers: { 'Location': '/login' } });
},
};