isn/src/isnd/Controllers/NewUpdateController.cs

17 lines
378 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-07-05 12:55:52 +01:00
using isn.Data;
2021-06-18 23:57:02 +01:00
2021-07-05 12:55:52 +01:00
namespace isn.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);
}
}
}