databag/app/mobile/src/api/getCardImageUrl.js

5 lines
173 B
JavaScript
Raw Normal View History

2022-09-20 07:50:53 +00:00
export function getCardImageUrl(server, token, cardId, revision) {
return `https://${server}/contact/cards/${cardId}/profile/image?agent=${token}&revision=${revision}`
2022-09-07 07:32:06 +00:00
}