Setting external user as admin (Integration)

  •  08-19-2009, 3:24 AM

    Setting external user as admin (Integration)

    Hi
     
    I'm trying out CuteChat for a project - and looks VERY good!
     
    However I have one major issue at the moment.
     
    I've written my own ChatProvider in order to integrate an existing user database, and it works very nicely.
     
    But I NEED to allow some of theese users to be admins - how?
     
    I would have thought that the code below would make every user an admin, but it doesn't?
     
    1. public override bool GetUserInfo(string loginName, ref string nickName, ref bool isAdmin)  
    2.         {  
    3.             nickName = loginName;  
    4.             isAdmin = true;  
    5.             return true;  
    6.         }  
    7.   
     
View Complete Thread