mirror of
https://github.com/correl/planning-poker.git
synced 2024-11-25 11:09:55 +00:00
11 lines
337 B
Elixir
11 lines
337 B
Elixir
|
defmodule PlanningpokerWeb.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: :planningpoker,
|
||
|
pubsub_server: Planningpoker.PubSub
|
||
|
end
|