mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 03:29:16 +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`
|
|
}
|
|
|
|
|