| import { Access } from "payload/config"; | |
| export const publishedOnly: Access = ({ req: { user } }) => { | |
| if (Boolean(user)) return true; | |
| return { | |
| _status: { | |
| equals: "published", | |
| }, | |
| }; | |
| }; | |
| import { Access } from "payload/config"; | |
| export const publishedOnly: Access = ({ req: { user } }) => { | |
| if (Boolean(user)) return true; | |
| return { | |
| _status: { | |
| equals: "published", | |
| }, | |
| }; | |
| }; | |