Radarr/NzbDrone.Web/Controllers/NotificationController.cs

35 lines
865 B
C#
Raw Normal View History

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
{
2011-04-08 23:48:47 +00:00
private readonly NotificationProvider _notifications;
//
// GET: /Notification/
2011-04-08 23:48:47 +00:00
public NotificationController(NotificationProvider notificationProvider)
{
_notifications = notificationProvider;
}
[HttpGet]
public JsonResult Index()
{
2010-10-18 06:06:16 +00:00
string message = string.Empty;
if (_notifications.GetProgressNotifications.Count != 0)
{
message = _notifications.GetProgressNotifications[0].CurrentStatus;
}
return Json(message, JsonRequestBehavior.AllowGet);
}
}
}