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

7 lines
179 B
Elixir

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