mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
11 lines
265 B
Ruby
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
|