ide_controller.rb 310 字节
Newer Older
1 2
# frozen_string_literal: true

P
Phil Hughes 已提交
3
class IdeController < ApplicationController
4
  layout 'fullscreen'
P
Phil Hughes 已提交
5

6
  include ClientsidePreviewCSP
7 8
  include StaticObjectExternalStorageCSP

P
Phil Hughes 已提交
9
  def index
10
    Gitlab::UsageDataCounters::WebIdeCounter.increment_views_count
P
Phil Hughes 已提交
11 12
  end
end
13 14

IdeController.prepend_if_ee('EE::IdeController')