Skip to content

Instantly share code, notes, and snippets.

@rayrayzayzay
Last active April 15, 2023 03:35
Show Gist options
  • Save rayrayzayzay/2f75a71dbadc82842656ef85054bf4e0 to your computer and use it in GitHub Desktop.
Save rayrayzayzay/2f75a71dbadc82842656ef85054bf4e0 to your computer and use it in GitHub Desktop.
defmodule MyHandler do
use ChannelHandler.Handler
plug MyPlug when action in [:create, :delete]
plug MyPlug when event in ["post:delete"]
def create(payload, context, socket) do
# ...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment