mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 13:33:21 -08:00
18 lines
535 B
TypeScript
18 lines
535 B
TypeScript
import type { ApiRelationshipJSON } from 'mastodon/api_types/relationships';
|
|
import { createAppAsyncThunk } from 'mastodon/store/typed_functions';
|
|
|
|
import api from '../api';
|
|
|
|
export const submitAccountNote = createAppAsyncThunk(
|
|
'account_note/submit',
|
|
async (args: { id: string; value: string }, { getState }) => {
|
|
const response = await api(getState).post<ApiRelationshipJSON>(
|
|
`/api/v1/accounts/${args.id}/note`,
|
|
{
|
|
comment: args.value,
|
|
},
|
|
);
|
|
|
|
return { relationship: response.data };
|
|
},
|
|
);
|