add apiUrlPrefix

This commit is contained in:
AJ ONeal 2017-06-14 02:03:22 +00:00
parent 360a53b84a
commit 1e32d4a631
2 changed files with 13 additions and 0 deletions

View File

@ -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
```

View File

@ -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