Merge branch 'support/2255_posix_errors' into 'develop'
[akkoma] / lib / pleroma / web / plugs / basic_auth_decoder_plug.ex
index af7ecb0d8ff009e32d016d5af8cb697b67619b75..97529aedbae6f0d919f91e0333b0a57cf09b46a3 100644 (file)
@@ -2,7 +2,13 @@
 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
 # SPDX-License-Identifier: AGPL-3.0-only
 
-defmodule Pleroma.Plugs.BasicAuthDecoderPlug do
+defmodule Pleroma.Web.Plugs.BasicAuthDecoderPlug do
+  @moduledoc """
+  Decodes HTTP Basic Auth information and assigns `:auth_credentials`.
+
+  NOTE: no checks are performed at this step, auth_credentials/username could be easily faked.
+  """
+
   import Plug.Conn
 
   def init(options) do