broken/ef
Paul Schneider 3 years ago
parent 903f5157d2
commit e6f4349621
3 changed files with 3 additions and 23 deletions

@ -2,7 +2,7 @@ using System;
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using System.Linq; using System.Linq;
namespace isnd.Controllers namespace isnd.Attributes
{ {
internal class SafeNameAttribute : ValidationAttribute internal class SafeNameAttribute : ValidationAttribute
{ {

@ -1,28 +1,12 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNetCore.DataProtection;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using NuGet.Packaging.Core;
using NuGet.Versioning;
using isnd.Data;
using isnd.Helpers; using isnd.Helpers;
using Microsoft.AspNetCore.Http;
using isnd.Data.Catalog;
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using isnd.Attributes;
namespace isnd.Controllers namespace isnd.Controllers
{ {
public partial class PackagesController public partial class PackagesController
{ {
[HttpDelete(_pkgRootPrefix + ApiConfig.Delete + "/{id}/{*lower}")] [HttpDelete(_pkgRootPrefix + ApiConfig.Delete + "/{id}/{*lower}")]
public async Task<IActionResult> Delete( public async Task<IActionResult> Delete(
[FromRoute][SafeName][Required] string id, [FromRoute][SafeName][Required] string id,

@ -1,11 +1,7 @@
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using System.IO; using System.IO;
using System.Linq;
using System.Threading.Tasks;
using isnd.ViewModels;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore; using isnd.Attributes;
namespace isnd.Controllers namespace isnd.Controllers
{ {

Loading…