1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00
chess/lib/chess_web/views/layout_view.ex

8 lines
135 B
Elixir

defmodule ChessWeb.LayoutView do
use ChessWeb, :view
def current_user(conn) do
Guardian.Plug.current_resource(conn)
end
end