Ignore:
Timestamp:
Feb 16, 2023, 3:50:53 PM (21 months ago)
Author:
alloc
Message:

Latest state including reworking to the permissions system

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements2/WebServer/src/ConnectionHandler.cs

    r402 r404  
    3131                }
    3232
    33                 public WebConnection LogIn (PlatformUserIdentifierAbs _userId, IPAddress _ip) {
     33                public WebConnection LogIn (IPAddress _ip, string _username, PlatformUserIdentifierAbs _userId, PlatformUserIdentifierAbs _crossUserId = null) {
    3434                        string sessionId = Guid.NewGuid ().ToString ();
    35                         WebConnection con = new WebConnection (sessionId, _ip, _userId);
     35                        WebConnection con = new WebConnection (sessionId, _ip, _username, _userId, _crossUserId);
    3636                        connections.Add (sessionId, con);
    3737                        return con;
Note: See TracChangeset for help on using the changeset viewer.