Skip to content
Max Ivak edited this page Nov 5, 2017 · 2 revisions

Notify to Slack

  • secrets.yml

production:
  ...

  slack:
    general:
      webhook_url: "https://hooks.slack.com/hook_code"
      channel: "#mychannel"
      username: "myuser"

  • send notification about your event:
Notify::NotifyGeneralService.notify_event("event text")

or include request info

Notify::NotifyGeneralService.notify_event("event text", request)

where request - is HTTP request

Clone this wiki locally