in dev, allow dev FE
[akkoma] / lib / pleroma / web / plugs / basic_auth_decoder_plug.ex
index 4dadfb0004526355f704f60ee7c4962b94225f3e..397f26de512041afe85c5cef733a61400997fa42 100644 (file)
@@ -1,8 +1,14 @@
 # Pleroma: A lightweight social networking server
-# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
 # SPDX-License-Identifier: AGPL-3.0-only
 
 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