mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-02 17:54:01 +00:00
e3c750bf4d
* Test Adding permissions * Permissions overview test added
9 lines
483 B
Python
9 lines
483 B
Python
from enum import Enum
|
|
|
|
class PermissionsElements(Enum):
|
|
WELCOME_TITLE = "Permissions"
|
|
WELCOME_SUBTITLE = 'You can manage your community by creating and issuing membership and access permissions'
|
|
WELCOME_CHECKLIST_ELEMENT_1 = 'Give individual members access to private channels'
|
|
WELCOME_CHECKLIST_ELEMENT_2 = 'Monetise your community with subscriptions and fees'
|
|
WELCOME_CHECKLIST_ELEMENT_3 = 'Require holding a token or NFT to obtain exclusive membership rights'
|