Hello all how we can add user group when we are establish the connection.
I m using https://cdn.jsdelivr.net/npm/@microsoft/signalr@3.1.8/dist/browser/signalr.min.js Library
I m initializing connection with below code #
let hubConnection = new signalR.HubConnectionBuilder()
.withUrl(hubUrl)
.configureLogging(signalR.LogLevel.Information)
.build();
now what I need as any Client try to create connection with my Hub with above code it will be going to be part of one my group I don't want to after Initialization? so at initialize level or opening connection I want group to be assigned to Client. any though