blob: 076932d0a0fd523d584fd149860d85e5bc4a614e [file] [log] [blame]
'use strict'
var urljoin = require('url-join'),
ok = require('objectkit'),
config = require('./config')
function buildUrl(options) {
return urljoin(
config.baseUrl,
options.client.orgId,
options.client.appId,
options.type, (typeof options.uuidOrName === 'string') ? options.uuidOrName : ""
)
}
module.exports = buildUrl