Files
payload/test/_community/config.ts
Jarrod Flesch ff70fd9813 feat: draft validation (#6746)
Allows draft validation to be enabled at the config level.

You can enable this by:

```ts
// ...collectionConfig
versions: {
  drafts: {
    validate: true // defaults to false
  }
}
```
2024-06-13 11:08:04 -04:00

56 lines
1.2 KiB
TypeScript

import { buildConfigWithDefaults } from '../buildConfigWithDefaults'
import { devUser } from '../credentials'
import { MediaCollection } from './collections/Media'
import { PostsCollection, postsSlug } from './collections/Posts'
import { MenuGlobal } from './globals/Menu'
export default buildConfigWithDefaults({
// ...extend config here
collections: [
PostsCollection,
MediaCollection,
// ...add more collections here
],
globals: [
MenuGlobal,
// ...add more globals here
],
graphQL: {
schemaOutputFile: './test/_community/schema.graphql',
},
onInit: async (payload) => {
await payload.create({
collection: 'users',
data: {
email: devUser.email,
password: devUser.password,
},
})
await payload.create({
collection: postsSlug,
data: {
text: 'example post',
title: 'title1',
},
})
await payload.create({
collection: postsSlug,
data: {
text: 'example post',
title: 'title3',
},
})
await payload.create({
collection: postsSlug,
data: {
text: 'example post',
title: 'title2',
},
})
},
})