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

10 lines
268 B
JavaScript

export function getContactChannelTopicAssetUrl(server, token, channelId, topicId, assetId) {
let host = "";
if (server) {
host = `https://${server}`;
}
return `${host}/content/channels/${channelId}/topics/${topicId}/assets/${assetId}?contact=${token}`
}