This website works better with JavaScript.
Home
Explore
Help
Sign In
adrianshort
/
apollo
mirror of
https://github.com/adrianshort/apollo.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Order feeds alphabetically on home page
master
Adrian Short
12 years ago
parent
fcf827d135
commit
4d24f18aac
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
Write
Preview
Loading…
Cancel
Save