debian-mirror-gitlab/app/controllers/time_tracking/timelogs_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
273 B
Ruby
Raw Normal View History

2023-06-20 00:43:36 +05:30
# 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