Skip to content

Commit 911ca98

Browse files
committed
Add basic module doc string
1 parent 8399b30 commit 911ca98

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

publication/lib/field_publication_web/user_auth.ex

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ defmodule FieldPublicationWeb.UserAuth do
99
import Plug.Conn
1010
import Phoenix.Controller
1111

12+
@moduledoc """
13+
This module implements plugs for handling user authentication and the different authorization levels.
14+
15+
See also the official [Phoenix documentation](https://hexdocs.pm/phoenix/plug.html).
16+
"""
17+
1218
defmodule Token do
1319
@enforce_keys [:name, :token, :context]
1420
defstruct [:name, :token, :context]

0 commit comments

Comments
 (0)