diff --git a/app/controllers/desktop/co_authors_controller.rb b/app/controllers/desktop/co_authors_controller.rb index 91390071..ec2327dd 100644 --- a/app/controllers/desktop/co_authors_controller.rb +++ b/app/controllers/desktop/co_authors_controller.rb @@ -1,6 +1,8 @@ class Desktop::CoAuthorsController < ApplicationController def index - @co_authors = CoAuthor.where(name_id: current_user.id) + @co_authors = CoAuthor.where(name_id: current_user.id).order(["co_author desc"]) + nils, not_nils = @co_authors.partition {|p| p.email.nil? } + @co_authors = not_nils + nils @co_author_relations = CoAuthorRelation.all respond_to do |format|