Solved
How to: Find all User Groups for a Given User
Could you please tell me how to find User Groups for the logged-in User? because right now I am facing difficulties to find it. Could you help me in this?
Could you please tell me how to find User Groups for the logged-in User? because right now I am facing difficulties to find it. Could you help me in this?
you can do this like
let result = Users[principal].GetGroups();
There is a "global" variable named principal which holds the executing users username.
Or you can also user the following
let result = Users[Resources["CurrentSessionInfo"].GetCurrentUser()].GetGroups();
I always use the principal variable.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.