1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-11-05 09:56:22 +00:00

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, format: null,
objectify: true, objectify: true,
inner: { inner: {
"private": true "private": false
} }
}); });
if (rinfo.fluenterror) { if (rinfo.fluenterror) {

View File

@ -61,7 +61,7 @@ _convert = ( srcs, dst, opts ) ->
###* Private workhorse method. Convert a single resume. ### ###* Private workhorse method. Convert a single resume. ###
_convertOne = (src, dst, idx) -> _convertOne = (src, dst, idx) ->
# Load the resume # 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 a load error occurs, report it and move on to the next file (if any)
if rinfo.fluenterror if rinfo.fluenterror