From 04c98d9aee76a2d7ad3606db5282d8d09721fffd Mon Sep 17 00:00:00 2001 From: Rene Enriquez Date: Tue, 24 Nov 2020 23:32:06 -0500 Subject: [PATCH 1/2] force deployment --- AutomaticClockOuts/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutomaticClockOuts/readme.md b/AutomaticClockOuts/readme.md index 460931a..6da3082 100644 --- a/AutomaticClockOuts/readme.md +++ b/AutomaticClockOuts/readme.md @@ -29,7 +29,7 @@ func azure functionapp publish time-tracker-azure-functions ``` NOTE: -Don't forget to set the following environment variables to make this app work locally: +Don't forget to set the following environment variables to make the app work locally: ```sh ENDPOINT='XXX' From 5efd16c10fd5e33e91f3b2400e1562288f1cf54f Mon Sep 17 00:00:00 2001 From: Rene Enriquez Date: Tue, 24 Nov 2020 23:32:38 -0500 Subject: [PATCH 2/2] force deployment --- AutomaticClockOuts/clock_out.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutomaticClockOuts/clock_out.js b/AutomaticClockOuts/clock_out.js index b72967c..7f570b4 100644 --- a/AutomaticClockOuts/clock_out.js +++ b/AutomaticClockOuts/clock_out.js @@ -32,7 +32,7 @@ const doClockOut = async (context) => { if(totalClockOutsExecuted > 0){ axios.post(slackWebHook, { - "text": `Hey guys, I just did a clock out for you. \nPlease visit https://timetracker.ioet.com/ and set the right end time for your entries :pls: \n- ${usersWithClockOut.join('\n- ')}` + "text": `Hey guys, I did a clock out for you. \nPlease visit https://timetracker.ioet.com/ and set the right end time for your entries :pls: \n- ${usersWithClockOut.join('\n- ')}` } ) .then(function (response) {