Remote details from SSCs.

This commit is contained in:
2019-11-17 20:24:42 +00:00
parent cc7fe43821
commit d134d54225
3 changed files with 0 additions and 81 deletions

View File

@@ -20,24 +20,6 @@ namespace DiscImageChef.Server.Areas.Admin.Controllers
View(await _context.Ssc.OrderBy(s => s.MinBlockLength).ThenBy(s => s.MaxBlockLength).
ThenBy(s => s.BlockSizeGranularity).ToListAsync());
// GET: Admin/Sscs/Details/5
public async Task<IActionResult> Details(int? id)
{
if(id == null)
{
return NotFound();
}
Ssc ssc = await _context.Ssc.FirstOrDefaultAsync(m => m.Id == id);
if(ssc == null)
{
return NotFound();
}
return View(ssc);
}
// GET: Admin/Sscs/Delete/5
public async Task<IActionResult> Delete(int? id)
{