diff --git a/app/models/notification_services/hipchat_service.rb b/app/models/notification_services/hipchat_service.rb index 8ecb9bb..8b096de 100644 --- a/app/models/notification_services/hipchat_service.rb +++ b/app/models/notification_services/hipchat_service.rb @@ -17,6 +17,10 @@ if defined? HipChat end end + def url + "https://www.hipchat.com/sign_in" + end + def create_notification(problem) url = app_problem_url problem.app, problem message = <<-MSG.strip_heredoc diff --git a/app/models/notification_services/hoiio_service.rb b/app/models/notification_services/hoiio_service.rb index 755412f..db70a76 100644 --- a/app/models/notification_services/hoiio_service.rb +++ b/app/models/notification_services/hoiio_service.rb @@ -21,6 +21,10 @@ class NotificationServices::HoiioService < NotificationService end end + def url + "https://secure.hoiio.com/user/" + end + def notification_description(problem) "[#{ problem.environment }]#{problem.message.to_s.truncate(50)}" end diff --git a/app/models/notification_services/pushover_service.rb b/app/models/notification_services/pushover_service.rb index 2d4d79f..c0c5fda 100644 --- a/app/models/notification_services/pushover_service.rb +++ b/app/models/notification_services/pushover_service.rb @@ -17,6 +17,10 @@ class NotificationServices::PushoverService < NotificationService end end + def url + "https://pushover.net/login" + end + def create_notification(problem) # build the hoi client notification = Rushover::Client.new(subdomain) -- libgit2 0.21.2