0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Fixed typo in migration to add backupContent permission (#12776)

refs https://github.com/TryGhost/Team/issues/553

A typo in the permission migration was introduced in
https://github.com/TryGhost/Ghost/commit/79c3709f

A migration to fix broken values will be present in Ghost 4.1
This commit is contained in:
Fabien 'egg' O'Carroll 2021-03-18 14:51:11 +00:00 committed by GitHub
parent 33470f2a23
commit 1510070dcd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,6 @@ const {
module.exports = addPermission({
name: 'Backup database',
action: 'backupContect',
action: 'backupContent',
object: 'db'
});