function enableGithubBackups({ owner, repo, debugProxy, allow } = {}) {
onVersion(async ({ id, version } = {}) => {
fetch(
`https://webcode.run/observablehq.com/@endpointservices/realtime-request-log` +
`/version-${id}@${version}`
);
let dispatchURL = `https://webcode.run/observablehq.com/d/${id};${dispatchProxyName(
{ owner, repo, event_type: "new_notebook_version" }
)}`;
fetch(dispatchURL, {
method: "POST",
body: JSON.stringify({ url: await urlFromId(id), id, version })
});
});
const dispatchBackup = createDispatchProxy({
owner,
repo,
event_type: "new_notebook_version",
client_payload: null,
debug: debugProxy,
beforeDispatch: async ({ client_payload } = {}, ctx) => {
client_payload.api_key = ctx.secrets.api_key;
}
});
return dispatchBackup;
}