You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: