Current section

Files

Jump to
authable lib authable authentications session_authentication.ex
Raw

lib/authable/authentications/session_authentication.ex

defmodule Authable.SessionAuthentication do
@moduledoc """
Session Authentication authenticate
"""
alias Authable.TokenAuthentication
def authenticate(session_token) do
TokenAuthentication.authenticate("session_token", session_token)
end
end