Skip to content

Commit

Permalink
fix: add missing content.i18n perm
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Dec 5, 2024
1 parent 74175f2 commit 2a7f302
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles-and-teams/extensions/rolesAndTeams/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const createExtension = () => {
id: "full-cms-access",
name: "Full CMS Access",
description: "Full access to the CMS application",
permissions: [{ name: "cms.*" }],
permissions: [{ name: "cms.*" }, { name: "content.i18n" }],

// Use the `tenant` property to ensure role is only available in a specific tenant.
// tenant: "root"
Expand All @@ -18,7 +18,7 @@ export const createExtension = () => {
id: "full-pb-access",
name: "Full Page Builder",
description: "Full access to the Page Builder application",
permissions: [{ name: "pb.*" }],
permissions: [{ name: "pb.*" }, { name: "content.i18n" }],

// Use the `tenant` property to ensure role is only available in a specific tenant.
// tenant: "root"
Expand Down

0 comments on commit 2a7f302

Please sign in to comment.