Fixed callbacks for cleaning up profiles.

This commit is contained in:
CakeAndBanana
2025-10-13 00:39:30 +02:00
parent b43ceb9f7e
commit c447c33b7a
4 changed files with 30 additions and 6 deletions

View File

@@ -199,6 +199,13 @@ public partial class ApiController
return Task.CompletedTask;
}
public Task Client_GroupSendProfile(GroupProfileDto groupInfo)
{
Logger.LogDebug("Client_GroupSendProfile: {dto}", groupInfo);
ExecuteSafely(() => Mediator.Publish(new ClearProfileGroupDataMessage(groupInfo.Group)));
return Task.CompletedTask;
}
public Task Client_UserUpdateSelfPairPermissions(UserPermissionsDto dto)
{
Logger.LogDebug("Client_UserUpdateSelfPairPermissions: {dto}", dto);