Skip to content

Commit

Permalink
Merge pull request #10 from muhmuhhum/fix/baum
Browse files Browse the repository at this point in the history
Add baum endpoint
  • Loading branch information
muhmuhhum authored Oct 22, 2021
2 parents 8549b13 + 2f2517f commit 8790dd3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions EinsamerWanderer.Auth/Controllers/TokenController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ public TokenController(IJwtTokenHandler jwtTokenHandler, IConfiguration configur
_jwtTokenHandler = jwtTokenHandler;
_configuration = configuration;
}

[HttpGet]
public IActionResult Test()
{
return Ok("Blub");
}

[HttpGet]
public IActionResult VerifyToken(string token)
Expand Down

0 comments on commit 8790dd3

Please sign in to comment.