From b84ea888fe519afbedf350d5ff82b3d4d8c790e1 Mon Sep 17 00:00:00 2001 From: Richard Dominick <34370238+RichDom2185@users.noreply.github.com> Date: Sat, 9 Dec 2023 10:02:19 +0700 Subject: [PATCH] Fix typing --- lib/cadet/auth/provider.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cadet/auth/provider.ex b/lib/cadet/auth/provider.ex index 7e399f203..9a8bb8905 100644 --- a/lib/cadet/auth/provider.ex +++ b/lib/cadet/auth/provider.ex @@ -4,7 +4,7 @@ defmodule Cadet.Auth.Provider do it for a token with the OAuth2 provider, and then retrieves the user ID and name. """ - @type code :: String.t() + @type code :: String.t() | Plug.Conn.t() @type token :: String.t() @type client_id :: String.t() @type redirect_uri :: String.t()