Skip to content

Commit 7299721

Browse files
author
Gavin Barron
committed
use the graphHelper correctly to book travel
1 parent 16b2b6e commit 7299721

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CreateTravelBooking/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module.exports = function (context, myQueueItem) {
2222
}
2323
}
2424
var graphHelper = new GraphHelper();
25-
GraphHelper.postData(`/v1.0/me/events`, myQueueItem.accessToken, JSON.stringify(meeting), (error, data) => {
25+
graphHelper.postData(`/v1.0/me/events`, myQueueItem.accessToken, JSON.stringify(meeting), (error, data) => {
2626
if (error) {
2727
context.done(error);
2828
return;

0 commit comments

Comments
 (0)