feat: add federation to README.md

This commit is contained in:
Levente Orban
2025-11-06 23:32:59 +01:00
parent c3f420df74
commit 258b822a27
5 changed files with 72 additions and 12 deletions

View File

@@ -69,9 +69,9 @@ async function readFederationConfig(): Promise<FederationConfig | null> {
*/
async function fetchEventsFromInstance(instanceUrl: string): Promise<Event[]> {
try {
// Ensure URL has protocol and append /api/events
// Ensure URL has protocol and append /api/federation/events
const apiUrl = `http://${instanceUrl}/api/events`;
const apiUrl = `http://${instanceUrl}/api/federation/events`;
logger.debug({ apiUrl }, 'Fetching events from federated instance');