Files
payload/packages/plugin-cloud/src/utilities/createKey.ts
2023-10-11 21:57:47 -04:00

9 lines
247 B
TypeScript

interface Args {
collection: string
filename: string
identityID: string
}
export const createKey = ({ collection, filename, identityID }: Args): string =>
`${identityID}/${process.env.PAYLOAD_CLOUD_ENVIRONMENT}/${collection}/${filename}`