Removed the forced private option from the CONVERT verb as it is now the default behaviour

This commit is contained in:
Daniele Rapagnani 2016-02-14 22:10:30 +01:00
parent fe46d15031
commit 3c166a21a0
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ Implementation of the 'convert' verb for HackMyResume.
format: null,
objectify: true,
inner: {
"private": true
"private": false
}
});
if (rinfo.fluenterror) {

View File

@ -61,7 +61,7 @@ _convert = ( srcs, dst, opts ) ->
###* Private workhorse method. Convert a single resume. ###
_convertOne = (src, dst, idx) ->
# Load the resume
rinfo = ResumeFactory.loadOne src, format: null, objectify: true, inner: { private: true }
rinfo = ResumeFactory.loadOne src, format: null, objectify: true
# If a load error occurs, report it and move on to the next file (if any)
if rinfo.fluenterror