Handling song being moved on the c++ side #55

This commit is contained in:
kdeng00
2019-08-04 17:08:49 -04:00
parent 610d4fb08d
commit 1531cad134
5 changed files with 57 additions and 47 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ namespace Icarus.Controllers.V1
#region HTTP endpoints
[HttpGet("{id}")]
[Authorize("stream:songs")]
public async Task<IActionResult> Get(int id)
public IActionResult Get(int id)
{
var songStore= HttpContext.RequestServices
.GetService(typeof(SongRepository)) as SongRepository;