Add button to load new replies in web UI (#35210)

This commit is contained in:
Eugen Rochko 2025-07-23 15:42:07 +02:00 committed by GitHub
commit 14a781fa24
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 411 additions and 26 deletions

View file

@ -0,0 +1,5 @@
import { apiRequestGet } from 'mastodon/api';
import type { ApiAsyncRefreshJSON } from 'mastodon/api_types/async_refreshes';
export const apiGetAsyncRefresh = (id: string) =>
apiRequestGet<ApiAsyncRefreshJSON>(`v1_alpha/async_refreshes/${id}`);