legendary-doc-site/apps/core/lib/auth_web/helpers.ex
2020-10-09 17:08:28 -05:00

7 lines
159 B
Elixir

defmodule AuthWeb.Helpers do
def has_role?(conn = %Plug.Conn{}, role) do
conn
|> Pow.Plug.current_user()
|> Auth.Roles.has_role?(role)
end
end