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 'hotfix/settings' into develop

+3 -3
+2 -2
kefi/routers/views.py
··· 11 11 ) 12 12 from slack_sdk.models.views import View 13 13 14 - from kefi.config import Settings 14 + from kefi.config import settings 15 15 from kefi.constants import Actions, ViewType 16 16 from kefi.models.plazas.helpers import get_or_create_current_plaza 17 17 ··· 141 141 HeaderBlock(text=PlainTextObject(text="Kefi Plaza")), 142 142 SectionBlock( 143 143 text=MarkdownTextObject( 144 - text=f"Cada viernes se asignan aleatoriamente grupos de {Settings.PLAZA_SIZE} personas en una sala virtual para compartir un Kefi online y hablar de los que más os guste. ¿Te unes?" 144 + text=f"Cada viernes se asignan aleatoriamente grupos de {settings.PLAZA_SIZE} personas en una sala virtual para compartir un Kefi online y hablar de los que más os guste. ¿Te unes?" 145 145 ), 146 146 accessory=ImageElement( 147 147 image_url="https://storage.staging.dekaside.com/kefi/static/images/kefi_plaza.png",
+1 -1
pyproject.toml
··· 1 1 [tool.poetry] 2 2 name = "Kefi" 3 - version = "2.0.0" 3 + version = "2.0.1" 4 4 description = "An awesome project from Dekalabs" 5 5 authors = ["Deka <backend@dekalabs.com>"] 6 6