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

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

class IdeController < ApplicationController
  layout 'fullscreen'

  before_action do
    push_frontend_feature_flag(:stage_all_by_default, default_enabled: true)
  end

  def index
    Gitlab::UsageDataCounters::WebIdeCounter.increment_views_count
  end
end

IdeController.prepend_if_ee('EE::IdeController')