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?
- public override bool GetUserInfo(string loginName, ref string nickName, ref bool isAdmin)
- {
- nickName = loginName;
- isAdmin = true;
- return true;
- }
-