File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import * as $index from "./routes/index.tsx";
1111import * as $learn from "./routes/learn.tsx" ;
1212import * as $projects from "./routes/projects.tsx" ;
1313import * as $report from "./routes/report.ts" ;
14+ import * as $slack from "./routes/slack.ts" ;
1415import * as $support from "./routes/support.tsx" ;
1516import * as $Footer from "./islands/Footer.tsx" ;
1617import * as $Header from "./islands/Header.tsx" ;
@@ -29,6 +30,7 @@ const manifest = {
2930 "./routes/learn.tsx" : $learn ,
3031 "./routes/projects.tsx" : $projects ,
3132 "./routes/report.ts" : $report ,
33+ "./routes/slack.ts" : $slack ,
3234 "./routes/support.tsx" : $support ,
3335 } ,
3436 islands : {
Original file line number Diff line number Diff line change 1+ import { Handlers } from "$fresh/server.ts" ;
2+
3+ export const handler : Handlers = {
4+ GET : ( ) =>
5+ new Response ( undefined , {
6+ status : 302 ,
7+ headers : { location : "https://slack.devict.org " } ,
8+ } ) ,
9+ } ;
You can’t perform that action at this time.
0 commit comments