2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
class Admin::CohortsController < Admin::ApplicationController
|
2021-02-22 17:27:13 +05:30
|
|
|
feature_category :devops_reports
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
# Backwards compatibility. Remove it and routing in 14.0
|
|
|
|
# @see https://gitlab.com/gitlab-org/gitlab/-/issues/299303
|
2017-08-17 22:00:37 +05:30
|
|
|
def index
|
2021-06-08 01:23:25 +05:30
|
|
|
redirect_to cohorts_admin_users_path
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|