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 @api_tokens_count = current_user.api_tokens.active.count end end