diff options
| author | Luke Bennett <lukeeeebennettplus@gmail.com> | 2018-07-18 01:37:58 +0100 |
|---|---|---|
| committer | Bob Van Landuyt <bob@vanlanduyt.co> | 2018-07-26 19:00:09 +0200 |
| commit | f8f2d0f9e18a76324d85ae319a3bb8585ed107d5 (patch) | |
| tree | d7d70e058aa007923401791747a9efc45a52083c /app/controllers/instance_statistics | |
| parent | 8e675082374eefdcb7ae6a004fcf2b16d3c68201 (diff) | |
| download | gitlab-ce-f8f2d0f9e18a76324d85ae319a3bb8585ed107d5.tar.gz | |
Create instance_statistics namespace and move convdev index and cohorts to it
Diffstat (limited to 'app/controllers/instance_statistics')
3 files changed, 28 insertions, 0 deletions
diff --git a/app/controllers/instance_statistics/application_controller.rb b/app/controllers/instance_statistics/application_controller.rb new file mode 100644 index 00000000000..fbdce7d0f0d --- /dev/null +++ b/app/controllers/instance_statistics/application_controller.rb @@ -0,0 +1,12 @@ +class InstanceStatistics::ApplicationController < ApplicationController + before_action :authenticate_user! + layout 'instance_statistics' + + def index + redirect_to instance_statistics_conversations_development_index_index_path + end + + def authenticate_user! + render_404 unless current_user.admin? + end +end diff --git a/app/controllers/instance_statistics/cohorts_controller.rb b/app/controllers/instance_statistics/cohorts_controller.rb new file mode 100644 index 00000000000..77d09c198c8 --- /dev/null +++ b/app/controllers/instance_statistics/cohorts_controller.rb @@ -0,0 +1,11 @@ +class InstanceStatistics::CohortsController < InstanceStatistics::ApplicationController + def index + if Gitlab::CurrentSettings.usage_ping_enabled + cohorts_results = Rails.cache.fetch('cohorts', expires_in: 1.day) do + CohortsService.new.execute + end + + @cohorts = CohortsSerializer.new.represent(cohorts_results) + end + end +end diff --git a/app/controllers/instance_statistics/conversational_development_index_controller.rb b/app/controllers/instance_statistics/conversational_development_index_controller.rb new file mode 100644 index 00000000000..023ce917e13 --- /dev/null +++ b/app/controllers/instance_statistics/conversational_development_index_controller.rb @@ -0,0 +1,5 @@ +class InstanceStatistics::ConversationalDevelopmentIndexController < InstanceStatistics::ApplicationController + def index + @metric = ConversationalDevelopmentIndex::Metric.order(:created_at).last&.present + end +end |
