add apiUrlPrefix

This commit is contained in:
AJ ONeal 2017-06-14 02:03:22 +00:00
förälder 360a53b84a
incheckning 1e32d4a631
2 ändrade filer med 13 tillägg och 0 borttagningar

Visa fil

@ -243,3 +243,10 @@ The permissions:
com.example.hello # refers to /srv/walnut/packages/pages/com.example.hello
'''
```
API
---
```
req.apiUrlPrefix => https://api.example.com/api/tld.domain.pkg
```

Visa fil

@ -517,6 +517,12 @@ module.exports.create = function (xconfx, apiFactories, apiDeps) {
var hasBeenHandled = false;
// Existing (Deprecated)
Object.defineProperty(req, 'apiUrlPrefix', {
enumerable: true
, configurable: false
, writable: false
, value: 'https://' + clientApiUri + '/' + pkgId
});
Object.defineProperty(req, 'experienceId', {
enumerable: true
, configurable: false