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

This commit is contained in:
myml 2022-05-01 11:26:06 +08:00 committed by GitHub
parent 485aa765d0
commit 559b8ae8cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -787,15 +787,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()
}