Skip to content

Commit

Permalink
Merge pull request pantsel#270 from VilledeMontreal/master
Browse files Browse the repository at this point in the history
A help message was inverted for the cors plugin
  • Loading branch information
pantsel authored Sep 13, 2018
2 parents 866ad2c + 79eb380 commit da78ad2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions api/services/KongPluginService.js
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions assets/js/app/core/services/KongPluginsService.js
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit da78ad2

Please sign in to comment.