Method: ApplicationHelper#admin?

Defined in:
app/helpers/application_helper.rb

#admin?Boolean

Is the current user an admin on the current community?

Returns:

  • (Boolean)


15
16
17
# File 'app/helpers/application_helper.rb', line 15

def admin?
  user_signed_in? && current_user.is_admin
end