Skip to content

Instantly share code, notes, and snippets.

@LikeLakers2
Created December 29, 2017 23:21
Show Gist options
  • Save LikeLakers2/6ccef03d65ab6d76cae0fdc0183f487f to your computer and use it in GitHub Desktop.
Save LikeLakers2/6ccef03d65ab6d76cae0fdc0183f487f to your computer and use it in GitHub Desktop.

Accept DMs and messages on any channel

# No code

Accept DMs and messages on a list of channels

return unless [1234, 5678].include? event.channel.id

Ignore DMs and accept messages on any channel

return if event.channel.private?

Ignore DMs and accept messages on a list of channels

return unless [1234, 5678].include? event.channel.id

Only accept DMs

return unless event.channel.private?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment