diff --git a/server/core/migrations/0005_auto_20230316_1028.py b/server/core/migrations/0005_auto_20230316_1028.py index 44e649d8..bd3c81ef 100644 --- a/server/core/migrations/0005_auto_20230316_1028.py +++ b/server/core/migrations/0005_auto_20230316_1028.py @@ -9,7 +9,7 @@ logger = get_logger(__name__) def add_group_page_permissions(apps, schema_editor): try: - types = ["lock", "bulk_delete", "edit", "pgroup.ublish", "unlock", "add"] + types = ["lock", "bulk_delete", "edit", "publish", "unlock", "add"] Group = apps.get_model("auth", "Group") Site = apps.get_model("wagtailcore", "Site") GroupPagePermission = apps.get_model("wagtailcore", "GroupPagePermission")