feat(backend): add skeleton discord auth controller

This commit is contained in:
sam 2024-06-10 16:25:49 +02:00
parent 50257d61f8
commit 493a6e4d29
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
4 changed files with 48 additions and 1 deletions

View file

@ -0,0 +1,14 @@
using Foxnouns.Backend.Database;
using Microsoft.AspNetCore.Mvc;
namespace Foxnouns.Backend.Controllers.Authentication;
[Route("/api/v2/auth/discord")]
public class DiscordAuthController(Config config, DatabaseContext db) : ApiControllerBase
{
[HttpPost("url")]
public async Task<IActionResult> AuthenticationUrl()
{
throw new NotImplementedException();
}
}