mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-01 12:32:57 -05:00
3a20290915
Port 547e97945df0abc68dc473ed60d2faeb2feb2b06
10 lines
319 B
TypeScript
10 lines
319 B
TypeScript
import { apiRequestPost } from 'flavours/glitch/api';
|
|
import type { ApiRelationshipJSON } from 'flavours/glitch/api_types/relationships';
|
|
|
|
export const apiSubmitAccountNote = (id: string, value: string) =>
|
|
apiRequestPost<ApiRelationshipJSON>(`v1/accounts/${id}/note`, {
|
|
data: {
|
|
comment: value,
|
|
},
|
|
});
|