pinafore/src/routes/_api/utils.js

17 lines
395 B
JavaScript
Raw Normal View History

2018-02-09 07:29:29 +01:00
function targetIsLocalhost (instanceName) {
2018-02-25 06:27:32 +01:00
return instanceName.startsWith('localhost:') || instanceName.startsWith('127.0.0.1:')
}
2018-02-09 07:29:29 +01:00
export function basename (instanceName) {
if (targetIsLocalhost(instanceName)) {
return `http://${instanceName}`
}
return `https://${instanceName}`
2018-02-09 07:29:29 +01:00
}
2018-02-24 23:49:28 +01:00
export function auth (accessToken) {
return {
'Authorization': `Bearer ${accessToken}`
}
}