(collection: string, slug: string)
| 1025 | } |
| 1026 | |
| 1027 | async getUnpublishedEntrySha(collection: string, slug: string) { |
| 1028 | const contentKey = generateContentKey(collection, slug); |
| 1029 | const branch = branchFromContentKey(contentKey); |
| 1030 | const mergeRequest = await this.getBranchMergeRequest(branch); |
| 1031 | return mergeRequest.sha; |
| 1032 | } |
| 1033 | } |
nothing calls this directly
no test coverage detected