Skip to content

Commit

Permalink
Use position in BoardSerializer.default_sort
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Parrish committed Sep 30, 2015
1 parent b414d1f commit b54c1e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/serializers/board_serializer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ class BoardSerializer
attribute :latest_discussion
can_include :discussions, :parent, :sub_boards
can_filter_by :subject_default
can_sort_by :last_comment_created_at
can_sort_by :position, :last_comment_created_at
embed_attributes_from :project
self.default_sort = '-last_comment_created_at'
self.default_sort = 'position,-last_comment_created_at'
self.preloads = [:latest_discussion]
self.eager_loads = [:project, :parent]

Expand Down

0 comments on commit b54c1e4

Please sign in to comment.