Added authorization

Endpoint to create contacts with the queueing system is now functional
This commit is contained in:
kdeng00
2023-10-01 12:10:13 -04:00
parent 78614e5629
commit b9d6318d0e
4 changed files with 100 additions and 9 deletions
@@ -1,7 +1,9 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace TextSender_API.Controllers;
[Authorize]
[ApiController]
[Route("api/v1/contact/queue")]
public class ContactQueueCreationController : ControllerBase