Welcome to mirror list, hosted at ThFree Co, Russian Federation.

conversational_development_index_controller.rb « admin « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 921169d3e2b085e5c1821851001fd28028b56ebf (plain)
1
2
3
4
5
class Admin::ConversationalDevelopmentIndexController < Admin::ApplicationController
  def show
    @metric = ConversationalDevelopmentIndex::Metric.order(:created_at).last&.present
  end
end