I would have issued a pull request (saw some weird permission issue)
rally_user_management.rb
pp.Project.ObjectID == project["ObjectID"] should be
(String(pp.Project.ObjectID) == project["ObjectID"])
wp.Workspace.ObjectID) == workspace["ObjectID"] should be
(String(wp.Workspace.ObjectID) == workspace["ObjectID"])
The above change fixes issues with upgrade mode
(Viewer overwriting Editor)
Also, if WorkspacePermission exists, it was still overwriting the workspace (thus using default permissions for the user) and erasing permissions on projects...
cktech
I would have issued a pull request (saw some weird permission issue)
rally_user_management.rb
pp.Project.ObjectID == project["ObjectID"] should be
(String(pp.Project.ObjectID) == project["ObjectID"])
wp.Workspace.ObjectID) == workspace["ObjectID"] should be
(String(wp.Workspace.ObjectID) == workspace["ObjectID"])
The above change fixes issues with upgrade mode
(Viewer overwriting Editor)
Also, if WorkspacePermission exists, it was still overwriting the workspace (thus using default permissions for the user) and erasing permissions on projects...
cktech