mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 13:58:06 +01:00
6fb5fafd28
Port bd06c13204
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
18 lines
529 B
TypeScript
18 lines
529 B
TypeScript
import { createAppAsyncThunk } from 'flavours/glitch/store/typed_functions';
|
|
|
|
import api from '../api';
|
|
|
|
export const submitAccountNote = createAppAsyncThunk(
|
|
'account_note/submit',
|
|
async (args: { id: string; value: string }, { getState }) => {
|
|
// TODO: replace `unknown` with `ApiRelationshipJSON` when it is merged
|
|
const response = await api(getState).post<unknown>(
|
|
`/api/v1/accounts/${args.id}/note`,
|
|
{
|
|
comment: args.value,
|
|
},
|
|
);
|
|
|
|
return { relationship: response.data };
|
|
},
|
|
);
|