corrige la création de l'event

main
Paul Schneider 9 years ago
parent 2b5c18b01c
commit 5674915a0d
1 changed files with 1 additions and 7 deletions

@ -183,14 +183,8 @@ namespace Yavsc.Services
if (string.IsNullOrWhiteSpace(calid)) if (string.IsNullOrWhiteSpace(calid))
throw new Exception("the calendar identifier is not specified"); throw new Exception("the calendar identifier is not specified");
/* var computeService = new BaseClientService.Initializer()
{
HttpClientInitializer = credential
};
computeService.ApiKey = Startup.GoogleSettings.ApiKey;
computeService.ApplicationName = "Yavsc"; */
var service = await CreateUserCalendarServiceAsync(userId); var service = await GetServiceAsync();
Event ev = new Event Event ev = new Event
{ {
Start = new EventDateTime { DateTime = startDate }, Start = new EventDateTime { DateTime = startDate },

Loading…