Mercurial > hg > soundsoftware-site
comparison app/controllers/issue_statuses_controller.rb @ 1517:dffacf8a6908 redmine-2.5
Update to Redmine SVN revision 13367 on 2.5-stable branch
author | Chris Cannam |
---|---|
date | Tue, 09 Sep 2014 09:29:00 +0100 |
parents | e248c7af89ec |
children |
comparison
equal
deleted
inserted
replaced
1516:b450a9d58aed | 1517:dffacf8a6908 |
---|---|
27 format.html { | 27 format.html { |
28 @issue_status_pages, @issue_statuses = paginate IssueStatus.sorted, :per_page => 25 | 28 @issue_status_pages, @issue_statuses = paginate IssueStatus.sorted, :per_page => 25 |
29 render :action => "index", :layout => false if request.xhr? | 29 render :action => "index", :layout => false if request.xhr? |
30 } | 30 } |
31 format.api { | 31 format.api { |
32 @issue_statuses = IssueStatus.all(:order => 'position') | 32 @issue_statuses = IssueStatus.order('position').all |
33 } | 33 } |
34 end | 34 end |
35 end | 35 end |
36 | 36 |
37 def new | 37 def new |