# HG changeset patch # User Marcin Kuzminski # Date 2017-11-09 18:03:12 # Node ID f43c9783d9ff0ca196a52fc73564be01e7921aa4 # Parent 86017d7344d08522214f1caafce25739e66fd5f0 slack: expose the FULL message instead of title. Because slack uses it's own trim, we should avoid sending trimmed data and let users see the whole set. diff --git a/rhodecode/integrations/types/slack.py b/rhodecode/integrations/types/slack.py --- a/rhodecode/integrations/types/slack.py +++ b/rhodecode/integrations/types/slack.py @@ -265,7 +265,7 @@ class SlackIntegrationType(IntegrationTy %for branch, branch_commits in branches_commits.items(): ${len(branch_commits['commits'])} ${'commit' if len(branch_commits['commits']) == 1 else 'commits'} on branch: <${branch_commits['branch']['url']}|${branch_commits['branch']['name']}> %for commit in branch_commits['commits']: - `<${commit['url']}|${commit['short_id']}>` - ${commit['message_html_title']|html_to_slack_links} + `<${commit['url']}|${commit['short_id']}>` - ${commit['message_html']|html_to_slack_links} %endfor %endfor '''))