fix: git sync untracked

This commit is contained in:
Nick
2019-09-27 14:17:12 -04:00
parent 30d800bc08
commit 454da698a1
3 changed files with 15 additions and 9 deletions

View File

@@ -89,5 +89,18 @@ module.exports = {
} else {
return false
}
},
/**
* Get file extension from content type
*/
getFileExtension(contentType) {
switch (contentType) {
case 'markdown':
return 'md'
case 'html':
return 'html'
default:
return 'txt'
}
}
}