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'
|