This controller provides the different RSS feeds that the framework makes available to the users.

Methods
Public Instance methods
index()

The general feed contains items for every object that has been created, updated or destroyed.

    # File app/controllers/feeds_controller.rb, line 8
 8:   def index
 9:     @feeds = Feed.find(:all, :limit => 20)
10: 
11:     response.headers['Content-Type'] = 'application/rss+xml'
12:     render :action => 'index', :layout => false
13:   end