27 lines
530 B
TypeScript
27 lines
530 B
TypeScript
import type { CollectionConfig } from 'payload'
|
|
|
|
import { anyone } from '../access/anyone'
|
|
import { authenticated } from '../access/authenticated'
|
|
import { slugField } from '@/fields/slug'
|
|
|
|
export const Categories: CollectionConfig = {
|
|
slug: 'categories',
|
|
access: {
|
|
create: authenticated,
|
|
delete: authenticated,
|
|
read: anyone,
|
|
update: authenticated,
|
|
},
|
|
admin: {
|
|
useAsTitle: 'title',
|
|
},
|
|
fields: [
|
|
{
|
|
name: 'title',
|
|
type: 'text',
|
|
required: true,
|
|
},
|
|
...slugField(),
|
|
],
|
|
}
|