diff --git a/Yavsc/src/Controllers/ManageController.cs b/Yavsc/src/Controllers/ManageController.cs index 49b9c2a8..a75fc674 100644 --- a/Yavsc/src/Controllers/ManageController.cs +++ b/Yavsc/src/Controllers/ManageController.cs @@ -14,7 +14,6 @@ using Microsoft.Data.Entity; using System; using PayPal.PayPalAPIInterfaceService; using System.Collections.Generic; -using System.IO; using Yavsc.Helpers; using Yavsc.ViewModels.Calendar; using System.Net; diff --git a/Yavsc/src/Services/MessageServices.cs b/Yavsc/src/Services/MessageServices.cs index e091d98a..85d00903 100755 --- a/Yavsc/src/Services/MessageServices.cs +++ b/Yavsc/src/Services/MessageServices.cs @@ -12,6 +12,7 @@ using System.Net.Http; using Microsoft.AspNet.Identity; using Yavsc.Models; using Yavsc.Models.Google.Messaging; +using System.Collections.Generic; namespace Yavsc.Services { @@ -30,14 +31,14 @@ namespace Yavsc.Services /// bool somethingsent = (response.failure == 0 && response.success > 0) /// public async Task - NotifyAsync(GoogleAuthSettings googleSettings, string registrationId, YaEvent ev) + NotifyAsync(GoogleAuthSettings googleSettings, IEnumerable registrationIds, YaEvent ev) { MessageWithPayloadResponse response; try { using (var web = new HttpClient()) { - response = await web.NotifyEvent(googleSettings, registrationId, ev); + response = await web.NotifyEvent(googleSettings, registrationIds, ev); } } catch (WebException ex) diff --git a/Yavsc/src/Startup.cs b/Yavsc/src/Startup.cs index fada84d6..53885f5d 100755 --- a/Yavsc/src/Startup.cs +++ b/Yavsc/src/Startup.cs @@ -19,7 +19,6 @@ using Microsoft.AspNet.Diagnostics; using Microsoft.AspNet.FileProviders; using Microsoft.AspNet.Hosting; using Microsoft.AspNet.Http; -using Microsoft.AspNet.Http.Authentication; using Microsoft.AspNet.Identity; using Microsoft.AspNet.Identity.EntityFramework; using Microsoft.AspNet.Localization;