wanasit / google-calendar

Google Calendar API connection in Node.js
MIT License
230 stars 54 forks source link

use of "DEL" instead of "DELETE" #19

Open cellog opened 9 years ago

cellog commented 9 years ago

from the Acl delete method:

Acl.prototype.delete = function(calendarId, ruleId, callback) { calendarId = encodeURIComponent(calendarId); ruleId = encodeURIComponent(ruleId);

this.request('DEL', '/calendars/' + calendarId + '/acl/' + ruleId, {}, {}, null, callback); }