blob: a2cac0717969e705cb6213505cff035ad6f6a61c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# 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
|