You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
348 B
16 lines
348 B
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace OAuthServer.Controllers;
|
|
|
|
[ApiController]
|
|
[Route("")]
|
|
public class UserController : ControllerBase {
|
|
[HttpGet]
|
|
[Authorize(Policy = "User")]
|
|
[Route("/auth/user")]
|
|
public ActionResult TestAuth()
|
|
{
|
|
return Ok("Authorized as User");
|
|
}
|
|
} |