1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-28 21:44:17 -05:00

8 lines
284 B
TypeScript
Raw Normal View History

import { apiRequestPost } from 'mastodon/api';
import type { ApiRelationshipJSON } from 'mastodon/api_types/relationships';
export const apiSubmitAccountNote = (id: string, value: string) =>
apiRequestPost<ApiRelationshipJSON>(`v1/accounts/${id}/note`, {
2024-06-25 18:53:03 +02:00
comment: value,
});