Files
SkydiveLogs/Back/skydiveLogs-api/Controllers/Base.cs
Sébastien André f671d0b1d0 Fix IoC
2021-04-18 10:49:21 +02:00

11 lines
347 B
C#

using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace skydiveLogs_api.Controllers
{
[Route("api/[controller]")]
[ApiController]
[Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
public class Base : ControllerBase { }
}