Hey!
I would like to create a custom render as specified in title.
For instance, I have my controller:
class MyController < ApplicationController
def index
respond_to do |format|
format.html # index.html.erb
format.xml { render :xml => @objs }
end
end
end
, but I would like something like this:
class MyController < ApplicationController
def index
respond_to do |format|
format.html # index.html.erb
format.xml { render :xml => @objs }
format.my_format { render :my_format => @objs }
end
end
end
Is it possible? What are the steps I need to make it work?
Thanks in advance!
UPDATE
I want something like in here. So I replaced the @objs with a method but it didn't work either (the method wasn't called).
Obs: I register the mime type at config/initializers/mime_types.rb.