C# gw offload work, schema-izing stuff

This commit is contained in:
Rory&
2026-02-06 05:21:31 +01:00
parent 3a5009f7c7
commit 862bfd7803
25 changed files with 817 additions and 83 deletions
@@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Mvc;
using Spacebar.Interop.Authentication;
using Spacebar.Interop.Authentication.AspNetCore;
using Spacebar.Models.Db.Contexts;
namespace Spacebar.GatewayOffload.Controllers;
[ApiController]
[Route("/_spacebar/offload/gateway/Identify")]
public class IdentifyController(ILogger<IdentifyController> logger, SpacebarAuthenticationService authService, SpacebarDbContext db, IServiceProvider sp) : ControllerBase
{
}