isn/src/isnd/Controllers/NewUpdateController.cs

17 lines
380 B
C#
Raw Normal View History

2021-06-18 23:57:02 +01:00
using System;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
2021-08-15 19:09:01 +01:00
using isnd.Data;
2021-06-18 23:57:02 +01:00
2021-08-15 19:09:01 +01:00
namespace isnd.Controllers
2021-06-18 23:57:02 +01:00
{
public class NewUpdateController : Controller
{
[Authorize(Policy = Constants.RequireAdminPolicyName)]
public IActionResult NewRelease(NewReleaseInfo version)
{
return View(version);
}
}
}