🐛 Fixed incorrect edit redirect for authors

closes https://github.com/TryGhost/Ghost/issues/13942

- Admin routes were updated, and the author page was moved under the settings route, but the /edit redirect was missed
This commit is contained in:
Matt Hanley 2022-01-10 16:56:33 +00:00
parent 68127cf4d4
commit 620059c7b4
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ module.exports.TAXONOMIES = {
},
author: {
filter: 'authors:\'%s\'',
editRedirect: '#/staff/:slug/',
editRedirect: '#/settings/staff/:slug/',
resource: 'authors'
}
};

View File

@ -54,7 +54,7 @@ module.exports.TAXONOMIES = {
},
author: {
filter: 'authors:\'%s\'',
editRedirect: '#/staff/:slug/',
editRedirect: '#/settings/staff/:slug/',
resource: 'authors'
}
};