fix: expose delete() and update() on ActivityPub syndicator object

This commit is contained in:
Ricardo
2026-03-23 08:30:10 +01:00
parent ee0b0bb58a
commit 3ace60a1c8

View File

@@ -683,6 +683,9 @@ export default class ActivityPubEndpoint {
return undefined;
}
},
delete: async (url) => this.delete(url),
update: async (properties) => this.update(properties),
};
}