Class: SlackNotifier

Inherits:
Object
  • Object
show all
Defined in:
app/services/slack_notifier.rb

Instance Method Summary collapse

Instance Method Details

#notify_new_contact(contact) ⇒ Object



2
3
4
5
# File 'app/services/slack_notifier.rb', line 2

def notify_new_contact(contact)
  notifier = Slack::Notifier.new ENV["SLACK_WEBHOOK_URL"]
  notifier.ping contact_message(contact)
end