17 lines
257 B
TypeScript
17 lines
257 B
TypeScript
|
import type { CollectionConfig } from "payload";
|
||
|
|
||
|
export const Media: CollectionConfig = {
|
||
|
slug: "media",
|
||
|
access: {
|
||
|
read: () => true,
|
||
|
},
|
||
|
fields: [
|
||
|
{
|
||
|
name: "alt",
|
||
|
type: "text",
|
||
|
required: true,
|
||
|
},
|
||
|
],
|
||
|
upload: true,
|
||
|
};
|