This repository has been archived by the owner on Oct 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
While testing an external connector, I found a couple of typos and missing information. This commit: * Fixes reports action url * Fixes escape codes in the regex * Adds authentication_header so the example will work
- Loading branch information
John Bard
committed
Oct 23, 2017
1 parent
d24e0c1
commit 43345f5
Showing
2 changed files
with
3 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
{ | ||
"authentication_header": "X-Weather-Authorization", | ||
"fields": { | ||
"zip": { | ||
"regex": "(^\d{5}(?:[-\s]\d{4})?$)" | ||
"regex": "([0-9]{5})(?:[- ][0-9]{4})?" | ||
} | ||
} | ||
} |
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