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

Configure Feed

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

chore: black is black

+2 -2
+2 -2
kefi/routers/views.py
··· 1 1 from slack_sdk.models.blocks import ( 2 2 ActionsBlock, 3 3 ButtonElement, 4 - HeaderBlock, 5 4 ContextBlock, 6 5 DividerBlock, 6 + HeaderBlock, 7 7 ImageElement, 8 8 MarkdownTextObject, 9 9 PlainTextObject, ··· 11 11 ) 12 12 from slack_sdk.models.views import View 13 13 14 - from kefi.constants import ViewType, Actions 14 + from kefi.constants import Actions, ViewType 15 15 from kefi.models.plazas.helpers import get_or_create_current_plaza 16 16 17 17