beef-articles 0.3.4 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/app/controllers/admin/articles_controller.rb +2 -2
- data/articles.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.5
|
@@ -1,11 +1,11 @@
|
|
1
1
|
class Admin::ArticlesController < Admin::BaseController
|
2
2
|
unloadable
|
3
|
-
sortable_attributes :
|
3
|
+
sortable_attributes :published_at, :title, :permalink, :published_to, :body, :description, :allow_comments
|
4
4
|
|
5
5
|
# GET /articles
|
6
6
|
# GET /articles.xml
|
7
7
|
def index
|
8
|
-
@articles = Article.paginate :page => params[:page], :order => sort_order(:default => '
|
8
|
+
@articles = Article.paginate :page => params[:page], :order => sort_order(:default => 'desc')
|
9
9
|
|
10
10
|
respond_to do |format|
|
11
11
|
format.html # index.html.erb
|
data/articles.gemspec
CHANGED