mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
35 lines
867 B
C#
35 lines
867 B
C#
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()
|
|
{
|
|
string message = string.Empty;
|
|
if (_notifications.GetProgressNotifications.Count != 0)
|
|
{
|
|
message = _notifications.GetProgressNotifications[0].CurrentStatus;
|
|
}
|
|
|
|
return Json(message, JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
}
|
|
}
|