databag/app/mobile/api/getListingImageUrl.js

11 lines
174 B
JavaScript
Raw Normal View History

2022-09-07 07:32:06 +00:00
export function getListingImageUrl(server, guid) {
let host = "";
if (server) {
host = `https://${server}`;
}
return `${host}/account/listing/${guid}/image`
}