This commit is contained in:
2022-10-30 12:47:39 -05:00
parent 93027e8c57
commit b8ac227199
6 changed files with 28 additions and 29 deletions

View File

@@ -150,7 +150,6 @@ public class SessionController : ControllerBase
//}
[HttpGet]
[AllowAnonymous]
public async Task<ActionResult<ReadAllSessionsResponse>> GetSessions()
{
var sessions = await this.queryRespository.ReadAllSessionsMetadata();

View File

@@ -89,9 +89,8 @@ public class UserController : ControllerBase
);
}
return Ok();
}
[HttpGet("GuestToken")]
public IActionResult GetGuestToken()
{