All Pages - columns system UI

This commit is contained in:
NGPixel
2017-04-09 11:48:37 -04:00
parent 485bfc39c3
commit 5a010f224f
8 changed files with 242 additions and 1 deletions

View File

@@ -405,5 +405,15 @@ module.exports = {
return fs.readFileAsync(path.join(ROOTPATH, 'client/content/create.md'), 'utf8').then((contents) => {
return _.replace(contents, new RegExp('{TITLE}', 'g'), formattedTitle)
})
},
/**
* Get all entries from base path
*
* @param {String} basePath Path to list from
* @return {Promise<Array>} List of entries
*/
getFromTree (basePath) {
return Promise.resolve([])
}
}