(collection: string, slug: string)
| 1520 | } |
| 1521 | |
| 1522 | async getUnpublishedEntrySha(collection: string, slug: string) { |
| 1523 | const contentKey = this.generateContentKey(collection, slug); |
| 1524 | const branch = branchFromContentKey(contentKey); |
| 1525 | const pullRequest = await this.getBranchPullRequest(branch); |
| 1526 | return pullRequest.head.sha; |
| 1527 | } |
| 1528 | } |
no test coverage detected