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>
10 lines
223 B
Ruby
10 lines
223 B
Ruby
module Api
|
|
module V1
|
|
class OrganizationsController < BaseController
|
|
def show
|
|
render_agent Crm::AgentSession.new(current_user).organization(params[:project_code], params[:id])
|
|
end
|
|
end
|
|
end
|
|
end
|