Correction
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using GrossesMitainesAPI.Data;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Cors;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace GrossesMitainesAPI.Controllers;
|
||||
[EnableCors("_myAllowSpecificOrigins"), ApiController, Route("api/[controller]"),
|
||||
Authorize(AuthenticationSchemes = "Identity.Application", Roles = "Administrateur")]
|
||||
public class InvoiceController : Controller {
|
||||
private readonly ILogger<InvoiceController> _logger;
|
||||
private readonly InventoryContext _context;
|
||||
|
||||
public InvoiceController(ILogger<InvoiceController> logger, InventoryContext context) {
|
||||
this._logger = logger;
|
||||
this._context = context;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user