Skip to content

Commit

Permalink
Fix route syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
zoul committed Dec 7, 2023
1 parent be1080d commit e997871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/join/confirm/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
const { SLACK_SIGNING_SECRET = "" } = process.env;

/** Mark user account as confirmed when user successfully signs in to Slack */
export default async function POST(request: NextRequest): Promise<Response> {
export async function POST(request: NextRequest): Promise<Response> {
/** Incoming message is either the initial handshake or an event callback */
const decodeIncomingMessage = union(
decodeEndpointHandshake,
Expand Down

1 comment on commit e997871

@vercel
Copy link

@vercel vercel bot commented on e997871 Dec 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

app – ./

app-ceskodigital.vercel.app
app-git-master-ceskodigital.vercel.app
app.cesko.digital

Please sign in to comment.