mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-25 23:41:37 +01:00
7d89d1f186
Port 2c7eed1fa1
to glitch-soc
7 lines
298 B
TypeScript
7 lines
298 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`, {
|
|
comment: value,
|
|
});
|