phoenix_chat/lib/chat_web/channels/presence.ex
2021-09-16 17:02:05 +02:00

11 lines
294 B
Elixir

defmodule ChatWeb.Presence do
@moduledoc """
Provides presence tracking to channels and processes.
See the [`Phoenix.Presence`](http://hexdocs.pm/phoenix/Phoenix.Presence.html)
docs for more details.
"""
use Phoenix.Presence,
otp_app: :chat,
pubsub_server: Chat.PubSub
end