01685eed76
The actions tracked in the web IDE are: - creation of commits - creation of merge requests - projects loaded
9 lines
187 B
Ruby
9 lines
187 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IdeController < ApplicationController
|
|
layout 'fullscreen'
|
|
|
|
def index
|
|
Gitlab::UsageDataCounters::WebIdeCounter.increment_views_count
|
|
end
|
|
end
|