class Miniblog::ApplicationController
Public Instance Methods
method_missing(method_name)
click to toggle source
# File app/controllers/miniblog/application_controller.rb, line 3 def method_missing(method_name) if method_name == :current_user Rails.logger.warn("current_user in Miniblog::ApplicationController should be overriden") ::User.new elsif method_name == :authenticate_user! Rails.logger.warn("authenticate_user! in Miniblog::ApplicationController should be overriden") end end