gitlab-ce/app/controllers/dashboard/todos_controller.rb

16 lines
294 B
Ruby

# frozen_string_literal: true
class Dashboard::TodosController < Dashboard::ApplicationController
include Gitlab::InternalEventsTracking
feature_category :notifications
urgency :low
def index
track_internal_event(
'view_todo_list',
user: current_user
)
end
end