Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
250 Bytes
export const fetchPostComments = postId => (
$.ajax({
url: `api/posts/${postId}/comments`,
method: 'GET',
})
);
export const createComment = comment => (
$.ajax({
url: 'api/comments',
method: 'POST',
data: {comment}
})
);