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 'main' of github.com:Dekalabs/kefi-backend

+1 -1
+1 -1
kefi/routers/helpers.py
··· 74 74 return SimpleResponse("No existe la acción asociada a este comando") 75 75 slack_user_id = self.extract_user_id(params[0]) 76 76 if self.user.slack_user_id == slack_user_id: 77 - return SimpleResponse("No puedes realizar esta acción sobre ti mismo") 77 + return SimpleResponse("¡No te puedes dar kefis! :no_good:") 78 78 if not slack_user_id: 79 79 return SimpleResponse("No se ha especificado un destinatario") 80 80 message = " ".join(params[1:])