Gli agenti autenticati con token Bearer possono leggere today/pipeline e annotare attività, con host MCP allineati a quelli di produzione. Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
351 B
Ruby
13 lines
351 B
Ruby
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
|