All checks were successful
Build Docker Images / test (map[name:Morska plugin_project:DiunaBI.Plugins.Morska]) (push) Successful in 1m36s
Build Docker Images / test (map[name:PedrolloPL plugin_project:DiunaBI.Plugins.PedrolloPL]) (push) Successful in 1m31s
Build Docker Images / build-and-push (map[image_suffix:morska name:Morska plugin_project:DiunaBI.Plugins.Morska]) (push) Successful in 1m55s
Build Docker Images / build-and-push (map[image_suffix:pedrollopl name:PedrolloPL plugin_project:DiunaBI.Plugins.PedrolloPL]) (push) Successful in 1m53s
17 lines
337 B
C#
17 lines
337 B
C#
using Microsoft.AspNetCore.SignalR;
|
|
|
|
namespace DiunaBI.API.Hubs;
|
|
|
|
public class EntityChangeHub : Hub
|
|
{
|
|
public async Task SendEntityChange(string module, string id, string operation)
|
|
{
|
|
await Clients.All.SendAsync("EntityChanged", new
|
|
{
|
|
module,
|
|
id,
|
|
operation
|
|
});
|
|
}
|
|
}
|