feat(workflow): add deploy preview links (#2028)

This commit is contained in:
Shawn Erquhart
2019-02-08 12:26:59 -05:00
committed by GitHub
parent f0553c720a
commit 15d221d4a4
24 changed files with 861 additions and 42 deletions

View File

@ -208,6 +208,11 @@ export default class GitGateway {
deleteFile(path, commitMessage, options) {
return this.backend.deleteFile(path, commitMessage, options);
}
getDeployPreview(collection, slug) {
if (this.backend.getDeployPreview) {
return this.backend.getDeployPreview(collection, slug);
}
}
unpublishedEntries() {
return this.backend.unpublishedEntries();
}