sort co_author name
This commit is contained in:
parent
6d08ca996f
commit
4681f0ee36
|
@ -1,7 +1,7 @@
|
||||||
class Desktop::CoAuthorsController < ApplicationController
|
class Desktop::CoAuthorsController < ApplicationController
|
||||||
def index
|
def index
|
||||||
@co_authors = CoAuthor.where(name_id: current_user.id).order(["co_author desc"])
|
nils, not_nils = CoAuthor.where(name_id: current_user.id)\
|
||||||
nils, not_nils = @co_authors.partition {|p| p.email.nil? }
|
.asc(:co_author).partition{|p| p.email.nil?}
|
||||||
@co_authors = not_nils + nils
|
@co_authors = not_nils + nils
|
||||||
@co_author_relations = CoAuthorRelation.all
|
@co_author_relations = CoAuthorRelation.all
|
||||||
|
|
||||||
|
|
Reference in New Issue