Sfoglia il codice sorgente

Order feeds alphabetically on home page

master
Adrian Short 12 anni fa
parent
commit
4d24f18aac
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      app/controllers/feeds_controller.rb

+ 1
- 1
app/controllers/feeds_controller.rb Vedi 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


Caricamento…
Annulla
Salva