Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 525333

Summary: Typo in accessRights.js: '/user/ should be '/users'
Product: [ECD] Orion Reporter: Michael Rennie <Michael_Rennie>
Component: NodeAssignee: Michael Rennie <Michael_Rennie>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P2    
Version: 15.0   
Target Milestone: 16.0   
Hardware: PC   
OS: Mac OS X   
See Also: https://github.com/eclipse/orion.client/pull/203
Whiteboard:

Description Michael Rennie CLA 2017-09-28 11:48:13 EDT
accessRights.js ~ line 61:

var createUserAccess = function(UserId){
	return [{
		"Method": getAccessRight(),
		"Uri": "/user/" + UserId
	}];
};

should be:

var createUserAccess = function(UserId){
	return [{
		"Method": getAccessRight(),
		"Uri": "/users/" + UserId
	}];
};
Comment 1 Eclipse Genie CLA 2017-09-28 11:50:33 EDT
GitHub Pull Request 203 created by [mrennie]
https://github.com/eclipse/orion.client/pull/203
Comment 2 Michael Rennie CLA 2017-09-28 15:06:47 EDT
Merged.