Remove some calls to all. They are not required, and Rails4 raises warnings about them.

This commit is contained in:
Stephan Kaag
2013-07-22 20:44:11 +02:00
parent 112b9f9c2a
commit 0e3b8fbb24
9 changed files with 9 additions and 10 deletions

View File

@ -1,6 +1,6 @@
class Admin::GroupsController < Admin::AdminController
def index
groups = Group.order(:name).all
groups = Group.order(:name).to_a
render_serialized(groups, BasicGroupSerializer)
end