e32bfad88a
Port b6fd14f0e2
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
8 lines
298 B
TypeScript
8 lines
298 B
TypeScript
import { apiRequest } from 'flavours/glitch/api';
|
|
import type { ApiRelationshipJSON } from 'flavours/glitch/api_types/relationships';
|
|
|
|
export const apiSubmitAccountNote = (id: string, value: string) =>
|
|
apiRequest<ApiRelationshipJSON>('post', `v1/accounts/${id}/note`, {
|
|
comment: value,
|
|
});
|