-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow proper extraction when using dots in dot notations.
Prior to this, when using `$params["<NAME>"]` or `$params['<NAME>']`, if `NAME` contained `dots(.)` (eg. `org.foo.blah`), only `org` would be extracted, instead of `org.foo.blah`. This PR now properly fetches the entire string and throws an error if using `dots (.)` without `single` or `double` quotes. The following references show whats valid and whats not: `$params.org.foo.blah` : Not Valid: the webhook will throw a validation error. `$params["org.foo.blah"]`: Valid `$params['org.foo.blah']`: Valid
- Loading branch information
1 parent
155179b
commit 01290d8
Showing
3 changed files
with
107 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters