Fix invalid type

lib/pleroma/web/auth/authenticator.ex:8:unknown_type
Unknown type: User.t/0.
This commit is contained in:
Mark Felder 2024-01-20 17:33:37 -05:00
parent 4f07116108
commit 83eece7764
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
defmodule Pleroma.Web.Auth.Authenticator do
@callback get_user(Plug.Conn.t()) :: {:ok, user :: struct()} | {:error, any()}
@callback create_from_registration(Plug.Conn.t(), registration :: struct()) ::
{:ok, User.t()} | {:error, any()}
{:ok, Pleroma.User.t()} | {:error, any()}
@callback get_registration(Plug.Conn.t()) :: {:ok, registration :: struct()} | {:error, any()}
@callback handle_error(Plug.Conn.t(), any()) :: any()
@callback auth_template() :: String.t() | nil