2021-07-21 15:29:19 +05:00
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
2021-05-20 11:07:45 +05:00
|
|
|
|
|
|
|
|
|
namespace AsbCloudWebApi.SignalR
|
|
|
|
|
{
|
|
|
|
|
// SignalR manual:
|
|
|
|
|
// https://docs.microsoft.com/ru-ru/aspnet/core/signalr/introduction?view=aspnetcore-5.0
|
|
|
|
|
|
|
|
|
|
[Authorize]
|
2023-07-10 16:59:11 +05:00
|
|
|
|
public class ReportsHub : BaseHub<IReportHubClient>
|
2021-05-20 11:07:45 +05:00
|
|
|
|
{
|
2023-07-10 16:59:11 +05:00
|
|
|
|
|
2021-05-20 11:07:45 +05:00
|
|
|
|
}
|
|
|
|
|
}
|