Files
junisaber/src/utils.js

7 lines
174 B
JavaScript
Raw Normal View History

const BASE_URL = 'https://saber.supermedium.com';
2018-07-20 09:34:52 +02:00
function getS3FileUrl (id, name) {
return `${BASE_URL}/${id}-${name}?v=1`;
2018-07-20 09:34:52 +02:00
}
module.exports.getS3FileUrl = getS3FileUrl;