🐛 Fix infinite oauth token reconnect websocket due to missing device id 🐛 Fix IP forwarded headers didn't work
15 lines
354 B
C#
15 lines
354 B
C#
using DysonNetwork.Sphere.Account;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using NodaTime;
|
|
|
|
namespace DysonNetwork.Sphere.Auth.OpenId;
|
|
|
|
/// <summary>
|
|
/// This controller is designed to handle the OAuth callback.
|
|
/// </summary>
|
|
[ApiController]
|
|
[Route("/auth/callback")]
|
|
public class AuthCallbackController : ControllerBase
|
|
{
|
|
} |