This commit is contained in:
Paul Schneider 2021-06-27 01:53:00 +01:00
commit 5de53a3cba
256 changed files with 22 additions and 22 deletions

View file

@ -1,17 +0,0 @@
using System;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using nuget_host.Data;
namespace nuget_host.Controllers
{
public class NewUpdateController : Controller
{
[Authorize(Policy = Constants.RequireAdminPolicyName)]
public IActionResult NewRelease(NewReleaseInfo version)
{
return View(version);
}
}
}