Skip to content
Snippets Groups Projects
Commit b3c90a70 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

update frontend permission choices to just: Private or Public (others can read)

parent b3c70845
No related branches found
No related tags found
No related merge requests found
......@@ -87,8 +87,7 @@ var Saver = React.createClass({
// TODO: hard coding values :(
var privacyOptions = [
(<option key="0" value={0}>Private</option>),
(<option key="1" value={1}>Others can read</option>),
(<option key="2" value={2}>Others can modify</option>)
(<option key="1" value={1}>Public (others can read)</option>)
];
var formError;
......
......@@ -204,10 +204,7 @@ CorvusServices.service('CorvusCore', ['$resource', 'User', function($resource, U
'name': 'Private'
}, {
'id': 1,
'name': 'Others can read'
}, {
'id': 2,
'name': 'Others can read and modify'
'name': 'Public (others can read)'
}];
this.permName = function(permId) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment