Explorar el Código

Order feeds alphabetically on home page

master
Adrian Short hace 12 años
padre
commit
4d24f18aac
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      app/controllers/feeds_controller.rb

+ 1
- 1
app/controllers/feeds_controller.rb Ver fichero

@@ -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


Cargando…
Cancelar
Guardar