11 lines
237 B
Ruby
11 lines
237 B
Ruby
# 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')
|