Browse Source

Order feeds alphabetically on home page

master
Adrian Short 12 years ago
parent
commit
4d24f18aac
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/controllers/feeds_controller.rb

+ 1
- 1
app/controllers/feeds_controller.rb View File

@@ -3,7 +3,7 @@ class FeedsController < ApplicationController
# GET /feeds.json
def index
@feed = Feed.new
@feeds = Feed.all
@feeds = Feed.all :order => :title
respond_to do |format|
format.html # index.html.erb


Loading…
Cancel
Save