fix credo check for is_admin?

This commit is contained in:
shibao 2024-02-23 21:13:34 -05:00
parent 5d146ce6af
commit e843014502
1 changed files with 4 additions and 4 deletions

View File

@ -404,15 +404,15 @@ defmodule Cannery.Accounts do
## Examples
iex> is_admin?(%User{role: :admin})
iex> admin?(%User{role: :admin})
true
iex> is_admin?(%User{})
iex> admin?(%User{})
false
"""
@spec is_admin?(User.t()) :: boolean()
def is_admin?(%User{id: user_id}) do
@spec admin?(User.t()) :: boolean()
def admin?(%User{id: user_id}) do
Repo.exists?(from u in User, where: u.id == ^user_id, where: u.role == :admin)
end