Commit 8b21ba67aa227b7b0c99ac786ae7ea35824e3b06

Authored by Erik Grinaker
1 parent a37711fb
Exists in master and in 1 other branch production

Campfire: include app name in message, and link to problem rather than app.

app/models/notification_services/campfire_service.rb
... ... @@ -25,7 +25,7 @@ if defined? Campy
25 25 campy = Campy::Room.new(:account => subdomain, :token => api_token, :room_id => room_id)
26 26  
27 27 # post the issue to the campfire room
28   - campy.speak "[errbit] http://#{Errbit::Config.host}/apps/#{problem.app.id.to_s} #{notification_description problem}"
  28 + campy.speak "[errbit] #{problem.app.name} #{notification_description problem} - http://#{Errbit::Config.host}/apps/#{problem.app.id.to_s}/problems/#{problem.id.to_s}"
29 29 end
30 30 end
31   -end
32 31 \ No newline at end of file
  32 +end
... ...