Files
Gary Sharp 6700d092b3 Update: Disco Online Services Update Checking
Migrates Disco Update checking to new services at
https://services.discoict.com.au.
2014-07-23 19:14:08 +10:00

26 lines
571 B
C#

using Disco.Services.Authorization;
using Disco.Services.Web;
using System.Web.Mvc;
namespace Disco.Web.Areas.Config.Controllers
{
public partial class ConfigController : AuthorizedDatabaseController
{
//
// GET: /Config/Config/
[DiscoAuthorize(Claims.Config.Show)]
public virtual ActionResult Index()
{
var m = new Models.Config.IndexModel()
{
UpdateResponse = Database.DiscoConfiguration.UpdateLastCheckResponse
};
return View(m);
}
}
}