summary refs log tree commit diff
path: root/extra/admin-api/Spacebar.GatewayOffload/Controllers/IdentifyController.cs
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-02-06 05:21:31 +0100
committerRory& <root@rory.gay>2026-02-06 05:21:31 +0100
commit862bfd78038e0f35581ebe5d5416bb6f9bca999e (patch)
tree04c765c5a3cbacce67df0a73a1d970082985fdc2 /extra/admin-api/Spacebar.GatewayOffload/Controllers/IdentifyController.cs
parentshoot, screwed up the merge conflict (diff)
downloadserver-ts-862bfd78038e0f35581ebe5d5416bb6f9bca999e.tar.xz
C# gw offload work, schema-izing stuff
Diffstat (limited to 'extra/admin-api/Spacebar.GatewayOffload/Controllers/IdentifyController.cs')
-rw-r--r--extra/admin-api/Spacebar.GatewayOffload/Controllers/IdentifyController.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/extra/admin-api/Spacebar.GatewayOffload/Controllers/IdentifyController.cs b/extra/admin-api/Spacebar.GatewayOffload/Controllers/IdentifyController.cs
new file mode 100644

index 00000000..6ce9f9fb --- /dev/null +++ b/extra/admin-api/Spacebar.GatewayOffload/Controllers/IdentifyController.cs
@@ -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 +{ + +} \ No newline at end of file