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

+8 -2
+4 -1
kefi/main.py
··· 14 14 app.include_router(interactivity.router) 15 15 app.include_router(events.router) 16 16 17 - locale.setlocale(locale.LC_TIME, settings.LOCALE) 17 + try: 18 + locale.setlocale(locale.LC_TIME, settings.LOCALE) 19 + except locale.Error: 20 + ... 18 21 19 22 20 23 @app.on_event("startup")
+4 -1
manage.py
··· 22 22 engine, 23 23 ) 24 24 25 - locale.setlocale(locale.LC_TIME, settings.LOCALE) 25 + try: 26 + locale.setlocale(locale.LC_TIME, settings.LOCALE) 27 + except locale.Error: 28 + ... 26 29 session = Session(engine) 27 30 return { 28 31 "Action": Action,