15 lines
285 B
Ruby
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
|