databag/app/mobile/api/removeChannelTopic.js
2022-09-07 00:32:06 -07:00

9 lines
298 B
JavaScript

import { checkResponse, fetchWithTimeout } from './fetchUtil';
export async function removeChannelTopic(token, channelId, topicId) {
let channel = await fetchWithTimeout(`/content/channels/${channelId}/topics/${topicId}?agent=${token}`,
{ method: 'DELETE' });
checkResponse(channel);
}