Files
afrov2/app/api/blog/route.ts
streap2 d1e551bcca
All checks were successful
Build and Push App / build (push) Successful in 9m12s
feat: implement SEO enhancements, automatic slug generation, and font optimizations
2026-04-26 08:11:31 +02:00

32 lines
1017 B
TypeScript

import { NextRequest, NextResponse } from 'next/server'
import prisma from '@/lib/prisma'
import { generateSlug } from '@/lib/utils'
// GET /api/blog
export async function GET() {
try {
const posts = await prisma.blogPost.findMany({
orderBy: { date: 'desc' },
})
return NextResponse.json(posts)
} catch (error) {
console.error('GET /api/blog error:', error)
return NextResponse.json({ error: 'Erreur serveur' }, { status: 500 })
}
}
// POST /api/blog
export async function POST(request: NextRequest) {
try {
const body = await request.json()
if (!body.slug && body.title) {
body.slug = generateSlug(body.title)
}
const post = await prisma.blogPost.create({ data: body })
return NextResponse.json(post, { status: 201 })
} catch (error) {
console.error('POST /api/blog error:', error)
return NextResponse.json({ error: 'Erreur lors de la création' }, { status: 500 })
}
}