debian-mirror-gitlab/app/controllers/time_tracking/timelogs_controller.rb
2023-06-20 00:43:36 +05:30

12 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