From 522be59973649ed8537080ba25d0f69709f37b81 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Fri, 16 Dec 2022 13:56:56 -0500 Subject: [PATCH] Removing deprecated call Removing method call that has been deprecated from one of the Controller classes --- Controllers/v1/ArtistController.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Controllers/v1/ArtistController.cs b/Controllers/v1/ArtistController.cs index 219e6c5..413228a 100644 --- a/Controllers/v1/ArtistController.cs +++ b/Controllers/v1/ArtistController.cs @@ -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