mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Remove details link in firewires.
This commit is contained in:
@@ -18,24 +18,6 @@ namespace DiscImageChef.Server.Areas.Admin.Controllers
|
||||
// GET: Admin/FireWires
|
||||
public async Task<IActionResult> Index() => View(await _context.FireWire.ToListAsync());
|
||||
|
||||
// GET: Admin/FireWires/Details/5
|
||||
public async Task<IActionResult> Details(int? id)
|
||||
{
|
||||
if(id == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
FireWire fireWire = await _context.FireWire.FirstOrDefaultAsync(m => m.Id == id);
|
||||
|
||||
if(fireWire == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return View(fireWire);
|
||||
}
|
||||
|
||||
// GET: Admin/FireWires/Edit/5
|
||||
public async Task<IActionResult> Edit(int? id)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user