notebook/app/controllers/information_controller.rb
2022-02-09 18:24:24 -08:00

12 lines
285 B
Ruby

class InformationController < ApplicationController
layout 'tailwind'
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