Files
nairobi/app/controllers/tracking/legislation/progress_bars_controller.rb
2019-06-12 16:23:40 +02:00

15 lines
285 B
Ruby

class Tracking::Legislation::ProgressBarsController < Tracking::ProgressBarsController
include FeatureFlags
feature_flag :legislation
def index
@process = progressable
end
private
def progressable
::Legislation::Process.find(params[:process_id])
end
end