mirror of
https://github.com/BradNut/svelteKitForBeginners
synced 2025-09-08 17:40:24 +00:00
14 lines
269 B
TypeScript
14 lines
269 B
TypeScript
import type { RequestHandler } from '@sveltejs/kit'
|
|
|
|
import { likeTweet } from '$root/utils/prisma'
|
|
|
|
export const post: RequestHandler = async ({ request }) => {
|
|
await likeTweet(request)
|
|
|
|
return {
|
|
status: 303,
|
|
headers: {
|
|
location: '/home'
|
|
}
|
|
}
|
|
}
|