mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-19 01:23:09 +00:00
13 lines
273 B
Ruby
13 lines
273 B
Ruby
# frozen_string_literal: true
|
|
|
|
module TimeTracking
|
|
class TimelogsController < ApplicationController
|
|
feature_category :team_planning
|
|
urgency :low
|
|
|
|
def index
|
|
render_404 unless Feature.enabled?(:global_time_tracking_report, current_user)
|
|
end
|
|
end
|
|
end
|