강정인

THE END

......@@ -52,6 +52,8 @@ router.post('/', function(req, res, next) {
}
});
});
//이벤트 추가
router.post('/add', function(req, res, next) {
var sday = req.body.startDay.split('-');
var stime = req.body.startTime.split(':');
......@@ -77,6 +79,7 @@ router.post('/add', function(req, res, next) {
});
//이벤트 삭제
router.post('/remove', function(req, res, next) {
var eId = req.body.eId;
gcal(googleToken).events.delete(id, eId, function(err, data) {
......@@ -130,6 +133,7 @@ var timestamp = function (date) {
}
};
//이벤트 시작 10분 전 동안 카카오톡 나에게메시지 보내기
function sendMessage(event,minute){
let template_objectObj = {
"object_type" : 'text',
......