(status: string, labelPrefix: string)
| 17 | } |
| 18 | |
| 19 | export function statusToLabel(status: string, labelPrefix: string) { |
| 20 | return `${getLabelPrefix(labelPrefix)}${status}`; |
| 21 | } |
| 22 | |
| 23 | export function generateContentKey(collectionName: string, slug: string) { |
| 24 | return `${collectionName}/${slug}`; |
no test coverage detected