slax/lib/slax_web/channels/presence.ex

12 lines
295 B
Elixir
Raw Normal View History

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