I have the following method in my ApplicationController so that I can load unique views depending on the user's privileges. It works fine when I call it within the controller, but when I specify a partial I get the partial's source instead of it rendering it.
class ApplicationController < ActionController::Base
include ControllerAuthentication
private
def render(*args)
options = args.extract_options!
render_options = _normalize_render(*args)
location = logged_in? && current_user.is_admin? ? "admin" : "client"
options[:template] = "/#{location}/#{params[:controller]}/#{render_options[:action] || params[:action]}"
if options[:partial]
options[:partial] = "#{location}/#{params[:controller]}/#{options[:partial]}"
end
super(*(args << options))
end
helper_method :render
end
<%= render partial: "form" %> outputs something like this on the page.
["<form ...>...</form>"]
I've been reading through the source of the render method, but I haven't pinpointed what is causing this. What do I need to change so I can render the partial correctly.