Add createdBy and lastModifiedBy audit fields to collections and globals.
- Install the plugin:
pnpm add @payload-bites/audit-fields
- Add the plugin to your
payload.config.ts
:
/// ....
import { auditFieldsPlugin } from "@payload-bites/audit-fields";
export default buildConfig({
// ...
plugins: [
// ...
auditFieldsPlugin({
// ...
}),
],
});
For defaults, refer to defaults.ts.
For options, refer to types.ts.