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

cohorts_controller.rb « admin « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c29b5224b09c02b321e4a01343e03c4c8f464c14 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class Admin::CohortsController < Admin::ApplicationController
  feature_category :devops_reports

  # Backwards compatibility. Remove it and routing in 14.0
  # @see https://gitlab.com/gitlab-org/gitlab/-/issues/299303
  def index
    redirect_to cohorts_admin_users_path
  end
end