2010-10-08 03:35:04 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Web;
|
|
|
|
|
using System.Web.Mvc;
|
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class NotificationController : Controller
|
|
|
|
|
{
|
|
|
|
|
private readonly INotificationProvider _notifications;
|
|
|
|
|
//
|
|
|
|
|
// GET: /Notification/
|
|
|
|
|
|
|
|
|
|
public NotificationController(INotificationProvider notificationProvider)
|
|
|
|
|
{
|
|
|
|
|
_notifications = notificationProvider;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpGet]
|
|
|
|
|
public JsonResult Index()
|
|
|
|
|
{
|
2010-10-12 02:49:27 +00:00
|
|
|
|
return Json(_notifications.GetProgressNotifications, JsonRequestBehavior.AllowGet);
|
2010-10-08 03:35:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|