Removing deprecated call

Removing method call that has been deprecated from one of the Controller classes
This commit is contained in:
kdeng00
2022-12-16 13:56:56 -05:00
parent 712a0a9a4a
commit 522be59973
-5
View File
@@ -53,11 +53,6 @@ namespace Icarus.Controllers.V1
[HttpGet("{id}")]
public IActionResult GetArtist(int id)
{
if (!IsTokenValid("read:artists"))
{
return StatusCode(401, "Not allowed");
}
Artist artist = new Artist
{
ArtistID = id