mirror of
https://github.com/spacebarchat/server.git
synced 2026-03-31 07:15:42 +00:00
13 lines
447 B
C#
13 lines
447 B
C#
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
|
|
{
|
|
|
|
} |