notebook/app/controllers/information_controller.rb
2020-10-15 21:18:19 -07:00

9 lines
261 B
Ruby

class InformationController < ApplicationController
Rails.application.config.content_types[:all].each do |content_type|
define_method(content_type.name.downcase.pluralize) do
@content_type = content_type
render :content_type
end
end
end