aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--clip.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/clip.rb b/clip.rb
index ef3c1ce..debe4a2 100644
--- a/clip.rb
+++ b/clip.rb
@@ -9,7 +9,7 @@ end
module Clip::Controllers
class Index < R '/'
def get
- @clips = Clip.all
+ @clips = Clip.order('created_at desc').all
render :index
end