From cdd99fa159f84695bc8b91cb7d989fc26126bcce Mon Sep 17 00:00:00 2001 From: Rebecca Le Date: Mon, 13 Nov 2023 11:16:17 +0800 Subject: [PATCH] chore: Appease `mix doctor` --- lib/ash_authentication_phoenix/utils/flash.ex | 4 ++++ lib/ash_authentication_phoenix_web.ex | 2 ++ 2 files changed, 6 insertions(+) diff --git a/lib/ash_authentication_phoenix/utils/flash.ex b/lib/ash_authentication_phoenix/utils/flash.ex index 67c31d8..40906b7 100644 --- a/lib/ash_authentication_phoenix/utils/flash.ex +++ b/lib/ash_authentication_phoenix/utils/flash.ex @@ -1,4 +1,8 @@ defmodule AshAuthentication.Phoenix.Utils.Flash do + @moduledoc """ + Utility functions for sending and receiving flash messages. + """ + import Phoenix.LiveView @doc """ diff --git a/lib/ash_authentication_phoenix_web.ex b/lib/ash_authentication_phoenix_web.ex index 60c7af6..397610c 100644 --- a/lib/ash_authentication_phoenix_web.ex +++ b/lib/ash_authentication_phoenix_web.ex @@ -1,4 +1,6 @@ defmodule AshAuthentication.Phoenix.Web do + @moduledoc false + alias AshAuthentication.Phoenix.{LayoutView, Utils.Flash, Web} @doc false