Merge branch 'main' into feature-join-whiteboard-by-code
# Conflicts: # dotnet/AipsRT/Hubs/WhiteboardHub.cs # dotnet/AipsRT/Services/Interfaces/IMessagingService.cs # front/src/stores/whiteboard.ts
This commit is contained in:
@@ -99,9 +99,9 @@ public class MessagingService : IMessagingService
|
||||
await _messagePublisher.PublishAsync(message);
|
||||
}
|
||||
|
||||
public async Task MoveShape(MoveShapeCommand moveShape)
|
||||
public async Task MoveShape(Guid whiteboardId, MoveShapeCommand moveShape)
|
||||
{
|
||||
var message = new MoveShapeMessage(moveShape);
|
||||
var message = new MoveShapeMessage(whiteboardId, moveShape);
|
||||
await _messagePublisher.PublishAsync(message);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user