2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
class IdeController < ApplicationController
|
2018-11-20 20:47:30 +05:30
|
|
|
layout 'fullscreen'
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
include ClientsidePreviewCSP
|
|
|
|
include StaticObjectExternalStorageCSP
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
before_action do
|
|
|
|
push_frontend_feature_flag(:build_service_proxy)
|
|
|
|
end
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
def index
|
2019-10-12 21:52:04 +05:30
|
|
|
Gitlab::UsageDataCounters::WebIdeCounter.increment_views_count
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
|
|
|
end
|