summaryrefslogtreecommitdiff
path: root/Controllers/WeatherForecastController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Controllers/WeatherForecastController.cs')
-rw-r--r--Controllers/WeatherForecastController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Controllers/WeatherForecastController.cs b/Controllers/WeatherForecastController.cs
index f7fdcdf..1a64e77 100644
--- a/Controllers/WeatherForecastController.cs
+++ b/Controllers/WeatherForecastController.cs
@@ -5,7 +5,6 @@ using Microsoft.AspNetCore.Authorization;
namespace IdentityAPI.Controllers;
[ApiController]
-[Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
[Route("[controller]")]
public class WeatherForecastController : ControllerBase
{
@@ -22,6 +21,7 @@ public class WeatherForecastController : ControllerBase
}
[HttpGet(Name = "GetWeatherForecast")]
+ [Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
public IEnumerable<WeatherForecast> Get()
{
return Enumerable.Range(1, 5).Select(index => new WeatherForecast