Rename: WirelessCertificates -> DeviceCertificates

Code updated to reflect change from 'WirelessCertificates' to
'DeviceCertificates'
This commit is contained in:
Gary Sharp
2013-02-07 18:33:41 +11:00
parent c7cbef9189
commit 5b93d7b1d1
5 changed files with 246 additions and 439 deletions
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Disco.Web.Areas.API.Controllers
{
public partial class DeviceCertificateController : dbAdminController
{
public virtual ActionResult Download(int id)
{
var wc = dbContext.DeviceCertificates.Find(id);
if (wc == null)
{
throw new Exception("Invalid Device Certificate Id");
}
return File(wc.Content, "application/x-pkcs12", string.Format("{0}.pfx", wc.Name));
}
}
}