legendary-doc-site/apps/core/lib/auth_web/helpers.ex

8 lines
159 B
Elixir
Raw Normal View History

2020-10-09 22:08:28 +00:00
defmodule AuthWeb.Helpers do
def has_role?(conn = %Plug.Conn{}, role) do
conn
|> Pow.Plug.current_user()
|> Auth.Roles.has_role?(role)
end
end