feat: activate payload cms collections

This commit is contained in:
Enguerrand Ozano
2026-02-28 15:13:45 +01:00
parent 0cafc29408
commit 65a222fbc7
5 changed files with 2 additions and 86 deletions

View File

@@ -1,8 +1,3 @@
// payload/collections/FAQ.ts
// Schéma Payload CMS pour la FAQ.
// COMMENTÉ — activé lors de la migration vers Payload.
/*
import type { CollectionConfig } from 'payload'
export const FAQ: CollectionConfig = {
@@ -32,11 +27,4 @@ export const FAQ: CollectionConfig = {
},
],
}
*/
export type PayloadFAQItem = {
id: string;
question: string;
answer: string;
order: number;
};