Python backend for a Slack's kudos plugin.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'develop' into feature/kefi_modals

+3 -3
+3 -3
kefi/config/__init__.py
··· 18 18 PLAZA_DEFAULT_MINUTE: int = 0 19 19 PLAZA_SIZE: int = 4 20 20 LOCALE: str = "es_ES" 21 - KUDOS_PRICE = 100 22 - CONGRATS_PRICE = 25 23 - HIGH_FIVE_PRICE = 5 21 + KUDOS_PRICE: int = 100 22 + CONGRATS_PRICE: int = 25 23 + HIGH_FIVE_PRICE: int = 5 24 24 25 25 class Config: 26 26 env_file = ".env"