Skip to content
This repository was archived by the owner on Jul 19, 2025. It is now read-only.

Commit 8df44c3

Browse files
Changed Flowdock notifications to come from hello@ instead of notifications@.
1 parent e70eaf1 commit 8df44c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/cc/services/flowdock.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def formatter
4646
def notify(subject, project, content)
4747
params = {
4848
source: "Code Climate",
49-
from_address: "notifications@codeclimate.com",
49+
from_address: "hello@codeclimate.com",
5050
from_name: "Code Climate",
5151
format: "html",
5252
subject: subject,

test/flowdock_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def assert_flowdock_receives(subject, event_data, expected_body)
107107
@stubs.post '/v1/messages/team_inbox/token' do |env|
108108
body = Hash[URI.decode_www_form(env[:body])]
109109
assert_equal "Code Climate", body["source"]
110-
assert_equal "notifications@codeclimate.com", body["from_address"]
110+
assert_equal "hello@codeclimate.com", body["from_address"]
111111
assert_equal "Code Climate", body["from_name"]
112112
assert_equal "html", body["format"]
113113
assert_equal subject, body["subject"]

0 commit comments

Comments
 (0)