@boxyhq/saml-jackson 0.1.5-beta.143 → 0.1.5-beta.144
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
- package/src/jackson.js +1 -1
package/README.md
CHANGED
@@ -97,7 +97,7 @@ router.post('/oauth/token', cors(), async (req, res) => {
|
|
97
97
|
}
|
98
98
|
});
|
99
99
|
|
100
|
-
router.get('/oauth/userinfo',
|
100
|
+
router.get('/oauth/userinfo', async (req, res) => {
|
101
101
|
try {
|
102
102
|
await oauthController.userInfo(req, res);
|
103
103
|
} catch (err) {
|
@@ -299,7 +299,7 @@ The following options are supported and will have to be configured during deploy
|
|
299
299
|
| EXTERNAL_URL (npm: externalUrl) | The public URL to reach this service, used internally for documenting the SAML configuration instructions. | `http://{HOST_URL}:{HOST_PORT}` |
|
300
300
|
| INTERNAL_HOST_URL | The URL to bind to expose the internal APIs. Do not configure this to a public network. | `localhost` |
|
301
301
|
| INTERNAL_HOST_PORT | The port to bind to for the internal APIs. | `6000` |
|
302
|
-
| JACKSON_API_KEYS | A comma separated list of API keys that will be validated when serving the Config API requests
|
302
|
+
| JACKSON_API_KEYS | A comma separated list of API keys that will be validated when serving the Config API requests | |
|
303
303
|
| SAML_AUDIENCE (npm: samlAudience) | This is just an identifier to validate the SAML audience, this value will also get configured in the SAML apps created by your customers. Once set do not change this value unless you get your customers to reconfigure their SAML again. It is case-sensitive. This does not have to be a real URL. | `https://saml.boxyhq.com` |
|
304
304
|
| IDP_ENABLED (npm: idpEnabled) | Set to `true` to enable IdP initiated login for SAML. SP initiated login is the only recommended flow but you might have to support IdP login at times. | `false` |
|
305
305
|
| DB_ENGINE (npm: db.engine) | Supported values are `redis`, `sql`, `mongo`, `mem`. | `sql` |
|
package/package.json
CHANGED
package/src/jackson.js
CHANGED
@@ -39,7 +39,7 @@ app.post(oauthPath + '/token', cors(), async (req, res) => {
|
|
39
39
|
}
|
40
40
|
});
|
41
41
|
|
42
|
-
app.get(oauthPath + '/userinfo',
|
42
|
+
app.get(oauthPath + '/userinfo', async (req, res) => {
|
43
43
|
try {
|
44
44
|
await oauthController.userInfo(req, res);
|
45
45
|
} catch (err) {
|