2021-03-11 19:13:27 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Projects::LearnGitlabController < Projects::ApplicationController
|
|
|
|
before_action :authenticate_user!
|
|
|
|
before_action :check_experiment_enabled?
|
|
|
|
|
|
|
|
feature_category :users
|
|
|
|
|
|
|
|
def index
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def check_experiment_enabled?
|
2021-11-11 11:23:49 +05:30
|
|
|
return access_denied! unless helpers.learn_gitlab_enabled?(project)
|
2021-03-11 19:13:27 +05:30
|
|
|
end
|
|
|
|
end
|