diff --git a/app/controllers/issue_statuses_controller.rb b/app/controllers/issue_statuses_controller.rb
index ba463e2..6d574fe 100644
--- a/app/controllers/issue_statuses_controller.rb
+++ b/app/controllers/issue_statuses_controller.rb
@@ -23,14 +23,10 @@ class IssueStatusesController < ApplicationController
accept_api_auth :index
def index
+ @issue_statuses = IssueStatus.sorted.to_a
respond_to do |format|
- format.html {
- @issue_status_pages, @issue_statuses = paginate IssueStatus.sorted, :per_page => 25
- render :action => "index", :layout => false if request.xhr?
- }
- format.api {
- @issue_statuses = IssueStatus.order('position').to_a
- }
+ format.html { render :layout => false if request.xhr? }
+ format.api
end
end
diff --git a/app/controllers/roles_controller.rb b/app/controllers/roles_controller.rb
index f3fa8f1..2732a89 100644
--- a/app/controllers/roles_controller.rb
+++ b/app/controllers/roles_controller.rb
@@ -28,8 +28,8 @@ class RolesController < ApplicationController
def index
respond_to do |format|
format.html {
- @role_pages, @roles = paginate Role.sorted, :per_page => 25
- render :action => "index", :layout => false if request.xhr?
+ @roles = Role.sorted.to_a
+ render :layout => false if request.xhr?
}
format.api {
@roles = Role.givable.to_a
diff --git a/app/controllers/trackers_controller.rb b/app/controllers/trackers_controller.rb
index b89a431..91784d1 100644
--- a/app/controllers/trackers_controller.rb
+++ b/app/controllers/trackers_controller.rb
@@ -23,14 +23,10 @@ class TrackersController < ApplicationController
accept_api_auth :index
def index
+ @trackers = Tracker.sorted.to_a
respond_to do |format|
- format.html {
- @tracker_pages, @trackers = paginate Tracker.sorted, :per_page => 25
- render :action => "index", :layout => false if request.xhr?
- }
- format.api {
- @trackers = Tracker.sorted.to_a
- }
+ format.html { render :layout => false if request.xhr? }
+ format.api
end
end
diff --git a/app/views/issue_statuses/index.html.erb b/app/views/issue_statuses/index.html.erb
index 40a5c92..59d6846 100644
--- a/app/views/issue_statuses/index.html.erb
+++ b/app/views/issue_statuses/index.html.erb
@@ -32,6 +32,4 @@
-
-
<% html_title(l(:label_issue_status_plural)) -%>
diff --git a/app/views/roles/index.html.erb b/app/views/roles/index.html.erb
index 6561d11..f9855f1 100644
--- a/app/views/roles/index.html.erb
+++ b/app/views/roles/index.html.erb
@@ -29,6 +29,4 @@
-
-
<% html_title(l(:label_role_plural)) -%>
diff --git a/app/views/trackers/index.html.erb b/app/views/trackers/index.html.erb
index 8ba7b7c..9dd253e 100644
--- a/app/views/trackers/index.html.erb
+++ b/app/views/trackers/index.html.erb
@@ -34,6 +34,4 @@
-
-
<% html_title(l(:label_tracker_plural)) -%>