36 lines
993 B
C#
36 lines
993 B
C#
|
|
|
||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.IO;
|
||
|
|
using System.IO.Compression;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
using Microsoft.AspNetCore.DataProtection;
|
||
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
using Microsoft.Extensions.Logging;
|
||
|
|
using NuGet.Packaging.Core;
|
||
|
|
using NuGet.Versioning;
|
||
|
|
using isnd.Data;
|
||
|
|
using isnd.Helpers;
|
||
|
|
using Microsoft.AspNetCore.Http;
|
||
|
|
using isnd.Data.Catalog;
|
||
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
|
||
|
|
namespace isnd.Controllers
|
||
|
|
{
|
||
|
|
|
||
|
|
public partial class PackagesController
|
||
|
|
{
|
||
|
|
|
||
|
|
[HttpDelete(_pkgRootPrefix + ApiConfig.Delete + "/{id}/{*lower}")]
|
||
|
|
public async Task<IActionResult> Delete(
|
||
|
|
[FromRoute][SafeName][Required] string id,
|
||
|
|
[FromRoute][SafeName][Required] string lower)
|
||
|
|
{
|
||
|
|
string pkgtype = ParamHelpers.Optional(ref lower);
|
||
|
|
var report = await _packageManager.DeletePackageAsync(id, lower, pkgtype);
|
||
|
|
return Ok(report);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|