summaryrefslogtreecommitdiff
path: root/app/controllers/projects/learn_gitlab_controller.rb
blob: 162ba9bd5cb22a350e6642c5def2f415fa85a06a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class Projects::LearnGitlabController < Projects::ApplicationController
  before_action :authenticate_user!
  before_action :check_experiment_enabled?

  feature_category :users

  def index
    push_frontend_experiment(:learn_gitlab_a, subject: current_user)
    push_frontend_experiment(:learn_gitlab_b, subject: current_user)
  end

  private

  def check_experiment_enabled?
    return access_denied! unless helpers.learn_gitlab_experiment_enabled?(project)
  end
end