fix: undefined author in git commit when deleting a page (#5215)

pull/5698/head
myml 3 years ago committed by Nicolas Giard
parent 948157745f
commit 64104f81ad

@ -773,15 +773,7 @@ module.exports = class Page extends Model {
* @returns {Promise} Promise with no value
*/
static async deletePage(opts) {
let page
if (_.has(opts, 'id')) {
page = await WIKI.models.pages.query().findById(opts.id)
} else {
page = await WIKI.models.pages.query().findOne({
path: opts.path,
localeCode: opts.locale
})
}
const page = await WIKI.models.pages.getPageFromDb(_.has(opts, 'id') ? opts.id : opts);
if (!page) {
throw new WIKI.Error.PageNotFound()
}

Loading…
Cancel
Save