(branch: string)
| 988 | } |
| 989 | |
| 990 | async deleteBranch(branch: string) { |
| 991 | await this.request({ |
| 992 | method: 'DELETE', |
| 993 | url: `${this.repoURL}/repository/branches/${encodeURIComponent(branch)}`, |
| 994 | }); |
| 995 | } |
| 996 | |
| 997 | async deleteUnpublishedEntry(collectionName: string, slug: string) { |
| 998 | const contentKey = generateContentKey(collectionName, slug); |
no test coverage detected