Skip to content
Snippets Groups Projects
Commit 626eedcb authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Always send slack messages to the channel

parent f41c65d1
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,8 @@ class AdapterBase: ...@@ -41,7 +41,8 @@ class AdapterBase:
return return
if settings.SEND_MESSAGES or self.always_send: if settings.SEND_MESSAGES or self.always_send:
self.send_message(message, **kwargs) self.send_message(message, **kwargs)
else:
if not settings.SEND_MESSAGES:
message = self.adapter_type + ': ' + message message = self.adapter_type + ': ' + message
messages.add_message(kwargs['request'], messages.INFO, message) messages.add_message(kwargs['request'], messages.INFO, message)
...@@ -86,6 +87,7 @@ class ActivityAdapter(AdapterBase): ...@@ -86,6 +87,7 @@ class ActivityAdapter(AdapterBase):
class SlackAdapter(AdapterBase): class SlackAdapter(AdapterBase):
adapter_type = "Slack" adapter_type = "Slack"
always_send = True
messages = { messages = {
MESSAGES.UPDATE_LEAD: 'The lead of "{submission.title}" has been updated form { old.lead } to {submission.lead} by {user}', MESSAGES.UPDATE_LEAD: 'The lead of "{submission.title}" has been updated form { old.lead } to {submission.lead} by {user}',
MESSAGES.COMMENT: 'A new comment has been posted on "{submission.title}"', MESSAGES.COMMENT: 'A new comment has been posted on "{submission.title}"',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment