mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
Implement edit beer post functionality. Register, edit and create beer post forms are now using the same layout found in components/ui/forms/BeerPostFormPageLayout. All forms are now extracted into their own components and are now found in components. Added redirectIfLoggedIn getServerSidesProp fn for login and register pages.
15 lines
424 B
TypeScript
15 lines
424 B
TypeScript
import DBClient from '@/prisma/DBClient';
|
|
import { z } from 'zod';
|
|
import EditBeerPostValidationSchema from './schema/EditBeerPostValidationSchema';
|
|
|
|
const schema = EditBeerPostValidationSchema.omit({ id: true });
|
|
|
|
export default async function editBeerPostById(id: string, data: z.infer<typeof schema>) {
|
|
const beerPost = await DBClient.instance.beerPost.update({
|
|
where: { id },
|
|
data,
|
|
});
|
|
|
|
return beerPost;
|
|
}
|