summaryrefslogtreecommitdiff
path: root/app/controllers/projects/learn_gitlab_controller.rb
blob: 177533b89c87110ed730e2b35bc744e689adeb26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

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

  feature_category :users

  def index
  end

  private

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

  def enable_invite_for_help_continuous_onboarding_experiment
    return unless current_user.can?(:admin_group_member, project.namespace)

    experiment(:invite_for_help_continuous_onboarding, namespace: project.namespace) do |e|
      e.candidate {}
      e.publish_to_database
    end
  end
end