Skip to content

Commit

Permalink
Add basic module doc string
Browse files Browse the repository at this point in the history
  • Loading branch information
dersmon committed Aug 6, 2024
1 parent 8399b30 commit 911ca98
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions publication/lib/field_publication_web/user_auth.ex
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ defmodule FieldPublicationWeb.UserAuth do
import Plug.Conn
import Phoenix.Controller

@moduledoc """
This module implements plugs for handling user authentication and the different authorization levels.
See also the official [Phoenix documentation](https://hexdocs.pm/phoenix/plug.html).
"""

defmodule Token do
@enforce_keys [:name, :token, :context]
defstruct [:name, :token, :context]
Expand Down

0 comments on commit 911ca98

Please sign in to comment.