mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-03 02:06:19 +00:00
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'
|