- Add ActivityHub and wire up SignalR in Program.cs - Broadcast new context events from ContextController - Connect SignalR client on Analytics page for live feed updates - Restructure activity feed HTML to support live prepending - Add slide-in animation for new activity items - Update CORS to allow credentials for SignalR Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6 lines
105 B
C#
6 lines
105 B
C#
using Microsoft.AspNetCore.SignalR;
|
|
|
|
namespace TaskTracker.Api.Hubs;
|
|
|
|
public class ActivityHub : Hub { }
|