order group recepient list ascending

This commit is contained in:
Robert Waltemath 2012-10-15 17:33:33 +02:00
parent 9ac913fd34
commit f0bf196934
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@
#recipients
= f.input :recipient_tokens, :input_html => { 'data-pre' => User.find_all_by_id(@message.recipients_ids).map { |u| u.token_attributes }.to_json }
= f.input :group_id, :as => :select, :collection => Group.order('type DESC, name DESC').all.reject { |g| g.memberships.empty? }
= f.input :group_id, :as => :select, :collection => Group.order('type DESC, name ASC').all.reject { |g| g.memberships.empty? }
= f.input :private
= f.input :subject
= f.input :body