40 lines
788 B
TypeScript
40 lines
788 B
TypeScript
import type { CollectionConfig } from 'payload/types'
|
|
|
|
import { createBreadcrumbsField } from '@payloadcms/plugin-nested-docs'
|
|
import { createParentField } from '@payloadcms/plugin-nested-docs'
|
|
|
|
export const Categories: CollectionConfig = {
|
|
access: {
|
|
read: () => true,
|
|
},
|
|
admin: {
|
|
useAsTitle: 'name',
|
|
},
|
|
fields: [
|
|
{
|
|
name: 'name',
|
|
required: true,
|
|
type: 'text',
|
|
},
|
|
createBreadcrumbsField('categories', {
|
|
name: 'categorization',
|
|
admin: {
|
|
description: 'custom',
|
|
},
|
|
fields: [
|
|
{
|
|
name: 'test',
|
|
type: 'text',
|
|
},
|
|
],
|
|
}),
|
|
createParentField('categories', {
|
|
name: 'owner',
|
|
admin: {
|
|
description: 'custom',
|
|
},
|
|
}),
|
|
],
|
|
slug: 'categories',
|
|
}
|