mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
29 lines
779 B
C#
29 lines
779 B
C#
using System.Web.Mvc;
|
|
using NzbDrone.Core.Providers;
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
{
|
|
public class NotificationController : Controller
|
|
{
|
|
private readonly NotificationProvider _notifications;
|
|
//
|
|
// GET: /Notification/
|
|
|
|
public NotificationController(NotificationProvider notificationProvider)
|
|
{
|
|
_notifications = notificationProvider;
|
|
}
|
|
|
|
[HttpGet]
|
|
public JsonResult Index()
|
|
{
|
|
string message = string.Empty;
|
|
if (_notifications.GetProgressNotifications.Count != 0)
|
|
{
|
|
message = _notifications.GetProgressNotifications[0].CurrentMessage;
|
|
}
|
|
|
|
return Json(message, JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
} |