mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
dbd62a4992
This PR introduces the possibility of inviting new users with an `admin` role and changing the role of already invited users. Also using scoped permission checks where applicable instead of using user role checks. --------- Co-authored-by: Val <68596159+valya@users.noreply.github.com> Co-authored-by: Alex Grozav <alex@grozav.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
10 lines
183 B
TypeScript
10 lines
183 B
TypeScript
import { BasePage } from './base';
|
|
|
|
export class SettingsPage extends BasePage {
|
|
url = '/settings';
|
|
getters = {
|
|
menuItems: () => cy.getByTestId('menu-item'),
|
|
};
|
|
actions = {};
|
|
}
|