mastodon-glitch/app/javascript/mastodon/api/accounts.ts

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 16:53:03 +00:00
comment: value,
});