class PostsController < ActionController::Base
resource_this
def new
respond_to do |format|
format.html { render :action => :new }
format.xml { render :xml => @post }
format.js
end
end
end
|
class PostsController < ActionController::Base
resource_this
def new
respond_to do |format|
format.html { render :action => :new }
format.xml { render :xml => @post }
format.js
end
end
end
|