notebook/app/controllers/information_controller.rb
2020-10-18 21:35:43 -07:00

11 lines
265 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