♻️ Moving to MagicOnion
This commit is contained in:
@ -1,13 +1,24 @@
|
||||
using DysonNetwork.Shared.Models;
|
||||
using DysonNetwork.Shared.Services;
|
||||
using MagicOnion.Server;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
|
||||
namespace DysonNetwork.Pass.Account;
|
||||
|
||||
public class ActionLogService(
|
||||
// GeoIpService geo,
|
||||
// FlushBufferService fbs
|
||||
)
|
||||
public class ActionLogService : ServiceBase<IActionLogService>, IActionLogService
|
||||
{
|
||||
// private readonly GeoIpService _geo;
|
||||
// private readonly FlushBufferService _fbs;
|
||||
|
||||
public ActionLogService(
|
||||
// GeoIpService geo,
|
||||
// FlushBufferService fbs
|
||||
)
|
||||
{
|
||||
// _geo = geo;
|
||||
// _fbs = fbs;
|
||||
}
|
||||
|
||||
public void CreateActionLog(Guid accountId, string action, Dictionary<string, object> meta)
|
||||
{
|
||||
var log = new ActionLog
|
||||
|
Reference in New Issue
Block a user