[ACS-6668] [ACS-6669] e2e migration - Info Drawer general and library properties tests (#3628)

*[ACS-6668] [ACS-6669] e2e migration - Info Drawer general and library properties tests 
---------
Co-authored-by: datguycheb <adam.swiderski@hyland.com>
This commit is contained in:
Katarzyna Kita
2024-02-13 09:58:45 +01:00
committed by GitHub
parent 630f698300
commit 1400545c2d
9 changed files with 501 additions and 29 deletions

View File

@@ -43,3 +43,31 @@ export const SIDEBAR_LABELS = {
FAVORITES: 'Favorites',
TRASH: 'Trash'
};
export const SITE_ROLES = {
SITE_MANAGER: {
ROLE: 'SiteManager',
LABEL: 'Manager'
},
SITE_CONSUMER: {
ROLE: 'SiteConsumer',
LABEL: 'Consumer'
},
SITE_CONTRIBUTOR: {
ROLE: 'SiteContributor',
LABEL: 'Contributor'
},
SITE_COLLABORATOR: {
ROLE: 'SiteCollaborator',
LABEL: 'Collaborator'
},
NONE: {
LABEL: 'Not a member'
}
};
export const SITE_VISIBILITY = {
PUBLIC: 'PUBLIC',
MODERATED: 'MODERATED',
PRIVATE: 'PRIVATE'
};