From 76409853320006774dc307c8d3f0c921985db838 Mon Sep 17 00:00:00 2001 From: Mar0xy Date: Sun, 24 Sep 2023 15:41:38 +0200 Subject: [PATCH] add: status to masto endpoints --- packages/backend/src/server/api/mastodon/endpoints.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/backend/src/server/api/mastodon/endpoints.ts b/packages/backend/src/server/api/mastodon/endpoints.ts index 111f9ef9c5..92cf6fe3d1 100644 --- a/packages/backend/src/server/api/mastodon/endpoints.ts +++ b/packages/backend/src/server/api/mastodon/endpoints.ts @@ -4,6 +4,7 @@ import { apiSearchMastodon } from './endpoints/search.js'; import { apiNotifyMastodon } from './endpoints/notifications.js'; import { apiFilterMastodon } from './endpoints/filter.js'; import { apiTimelineMastodon } from './endpoints/timeline.js'; +import { apiStatusMastodon } from './endpoints/status.js'; export { apiAccountMastodon, @@ -11,5 +12,6 @@ export { apiSearchMastodon, apiNotifyMastodon, apiFilterMastodon, - apiTimelineMastodon + apiTimelineMastodon, + apiStatusMastodon }