File size: 432 Bytes
41a71fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import { $api } from '@/shared/api/axiosInstance';
import { PostFormType } from '../ui/PostForm/PostForm';
type UpdatePostProps = {
post_id: number;
user_id: number;
} & PostFormType;
type UpdatePostResponse = {
status: number;
message: string;
};
export const updatePost = async (props: UpdatePostProps) => {
const { data } = await $api.post<UpdatePostResponse>(`/posts/update`, props);
return data;
};
|