-
Notifications
You must be signed in to change notification settings - Fork 162
Users Groups #102
Copy link
Copy link
Closed
Description
We can now get users groups from Redmine api. For this, when retrieving Users, add "groups" to INCLUDE
cf:
transport.getObjectsList(User.class, new BasicNameValuePair(
-
"include", "memberships")); -
then we can make available the "GetGroups" method in User.java.
"include", "memberships,groups"));
I have made the modification successfully, will try to pull request ASAP
Reactions are currently unavailable