feat(backend): add admin evaluation history, engine, simulation, bot API controllers and global exception middleware

This commit is contained in:
2026-08-24 21:37:32 +02:00
parent 6974b2075b
commit 676496b77d
37 changed files with 88203 additions and 83075 deletions
+2
View File
@@ -1,5 +1,6 @@
using System;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.SignalR;
using Microsoft.Extensions.Logging;
@@ -8,6 +9,7 @@ namespace FinlyticBackend.Hubs;
/// <summary>
/// SignalR Hub that streams live log messages from microservices to connected web UI clients.
/// </summary>
[Authorize]
public class LogStreamHub : Hub
{
private readonly ILogger<LogStreamHub> _logger;