mirror of
https://github.com/balzack/databag.git
synced 2025-02-14 12:39:17 +00:00
11 lines
174 B
JavaScript
11 lines
174 B
JavaScript
|
export function getListingImageUrl(server, guid) {
|
||
|
let host = "";
|
||
|
if (server) {
|
||
|
host = `https://${server}`;
|
||
|
}
|
||
|
|
||
|
return `${host}/account/listing/${guid}/image`
|
||
|
}
|
||
|
|
||
|
|