mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
🐛 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:
parent
68127cf4d4
commit
620059c7b4
2 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ module.exports.TAXONOMIES = {
|
||||||
},
|
},
|
||||||
author: {
|
author: {
|
||||||
filter: 'authors:\'%s\'',
|
filter: 'authors:\'%s\'',
|
||||||
editRedirect: '#/staff/:slug/',
|
editRedirect: '#/settings/staff/:slug/',
|
||||||
resource: 'authors'
|
resource: 'authors'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -54,7 +54,7 @@ module.exports.TAXONOMIES = {
|
||||||
},
|
},
|
||||||
author: {
|
author: {
|
||||||
filter: 'authors:\'%s\'',
|
filter: 'authors:\'%s\'',
|
||||||
editRedirect: '#/staff/:slug/',
|
editRedirect: '#/settings/staff/:slug/',
|
||||||
resource: 'authors'
|
resource: 'authors'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue