Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/frontend/@n8n/i18n/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2351,6 +2351,8 @@
"projectRoles.credential:create.tooltip": "Create new credentials",
"projectRoles.credential:share": "Share",
"projectRoles.credential:share.tooltip": "Share credentials with other projects or users",
"projectRoles.credential:unshare": "Unshare",
"projectRoles.credential:unshare.tooltip": "Remove credential sharing with other projects or users",
"projectRoles.credential:move": "Transfer",
"projectRoles.credential:move.tooltip": "Move credentials to another project",
"projectRoles.credential:delete": "Delete",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ describe('RoleHoverPopover', () => {
it('should display permission count', () => {
const { getByText } = renderComponent();

expect(getByText('3/32 permissions')).toBeInTheDocument();
expect(getByText('3/33 permissions')).toBeInTheDocument();
});

it('should display role description when available', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const UI_OPERATIONS = {
project: ['read', 'update', 'delete'],
folder: ['read', 'update', 'create', 'move', 'delete'],
workflow: ['read', 'update', 'create', 'publish', 'unpublish', 'move', 'delete'],
credential: ['read', 'update', 'create', 'share', 'move', 'delete'],
credential: ['read', 'update', 'create', 'share', 'unshare', 'move', 'delete'],
sourceControl: ['push'],
dataTable: ['read', 'readRow', 'update', 'writeRow', 'create', 'delete'],
projectVariable: ['read', 'update', 'create', 'delete'],
Expand Down