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: 4c9aac9a3277db0d5523d2339a1ee8b41b2fd297 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class IdeController < ApplicationController
  layout 'fullscreen'

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

IdeController.prepend_if_ee('EE::IdeController')