This file contains hidden or 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
| ^([\+-]?\d{4}(?!\d{2}\b))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24\:?00)([\.,]\d+(?!:))?)?(\17[0-5]\d([\.,]\d+)?)?([zZ]|([\+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?$ |
This file contains hidden or 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
| when my love comes down | |
| it can be sun down | |
| or just before day | |
| can be in December | |
| or even in May | |
| oh, you don’t have to be around daddy | |
| the very thought of you that’s all my love | |
| all my love come down |
This file contains hidden or 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
| return bluebird.join( | |
| auth.getUserJwt(personId, clientId), | |
| formioSubmissionDiff.diff(submission, personId, clientId, apiPath), | |
| (userToken, diff) => { | |
| saveDataToEhr(diff, personId, clientId); | |
| }) | |
| .catch((error) => { | |
| logger.error(error); | |
| return reply(boom.badRequest(error.message)); | |
| }); |
This file contains hidden or 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
| {"lastUpload":"2017-09-07T19:22:05.184Z","extensionVersion":"v2.8.3"} |
This file contains hidden or 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
| "use strict"; | |
| exports.plugin = { | |
| pkg: require("../package.json"), | |
| register: (server, options) => { | |
| console.log(Object.keys(server.events._eventListeners)); | |
| Object.keys(server.events._eventListeners).map(evt => { | |
| server.events.on(evt, () => { | |
| console.log(evt); |
OlderNewer