mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
9 lines
263 B
Ruby
9 lines
263 B
Ruby
# Superclass for all model controllers
|
|
class ApplicationController < ActionController::Base
|
|
protect_from_forgery
|
|
|
|
def content_type_from_controller(content_controller_name)
|
|
content_controller_name.to_s.chomp('Controller').singularize.constantize
|
|
end
|
|
end
|