I want to generate a method in my controller "Applications" in Ruby on Rails, bur i used scaffold and now I dont know if have to create a new view too.
def list
@applications = Application.all
end
I only want that my controller give me all the applications objects, but I dont know if I have to create a new View.
index
action for this? – sevenseacat Jul 30 '13 at 4:49