class AdminController < ApplicationController before_action :require_admin def show @page_title = "Impostazioni" @users_count = User.count @active_users_count = User.active.count @projects_count = Project.count @mail_identities_count = MailIdentity.count end end