From 79eb380bbfc934fda5431f6a3ef5d875c8d58ecb Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Sun, 9 Sep 2018 16:35:53 -0400 Subject: [PATCH] A help message was inverted for the cors plugin --- api/services/KongPluginService.js | 4 ++-- assets/js/app/core/services/KongPluginsService.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api/services/KongPluginService.js b/api/services/KongPluginService.js index 5117411a8..408624c85 100644 --- a/api/services/KongPluginService.js +++ b/api/services/KongPluginService.js @@ -533,12 +533,12 @@ var KongPluginService = _.merge(_.cloneDeep(require('./KongService')), { 'preflight_continue': { type: "boolean", value: false, - help: 'Flag to determine whether the Access-Control-Allow-Credentials header should be sent with true as the value.' + help: 'A boolean value that instructs the plugin to proxy the OPTIONS preflight request to the upstream API.' }, 'credentials': { type: "boolean", value: false, - help: 'A boolean value that instructs the plugin to proxy the OPTIONS preflight request to the upstream API.' + help: 'Flag to determine whether the Access-Control-Allow-Credentials header should be sent with true as the value.' } }, "acl": { diff --git a/assets/js/app/core/services/KongPluginsService.js b/assets/js/app/core/services/KongPluginsService.js index 44045f435..24e0eda92 100644 --- a/assets/js/app/core/services/KongPluginsService.js +++ b/assets/js/app/core/services/KongPluginsService.js @@ -385,12 +385,12 @@ 'preflight_continue': { type: "boolean", value: false, - help: 'Flag to determine whether the Access-Control-Allow-Credentials header should be sent with true as the value.' + help: 'A boolean value that instructs the plugin to proxy the OPTIONS preflight request to the upstream API.' }, 'credentials': { type: "boolean", value: false, - help: 'A boolean value that instructs the plugin to proxy the OPTIONS preflight request to the upstream API.' + help: 'Flag to determine whether the Access-Control-Allow-Credentials header should be sent with true as the value.' } }, "acl": {