diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-02-03 14:02:23 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-02-03 14:02:23 +0000 |
commit | b124501a4e825801024c873304757d3094753f02 (patch) | |
tree | 9afb532adc890e8d61b57b1327d73d3123a10726 /app | |
parent | 225637c5dc23465c49b9f4733a08ba37e6a40b40 (diff) | |
download | redmine-b124501a4e825801024c873304757d3094753f02.tar.gz redmine-b124501a4e825801024c873304757d3094753f02.zip |
Add 'Author' to the available columns for the issue list.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1110 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/models/query.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/query.rb b/app/models/query.rb index adfd5f42a..7127a464f 100644 --- a/app/models/query.rb +++ b/app/models/query.rb @@ -96,6 +96,7 @@ class Query < ActiveRecord::Base QueryColumn.new(:status, :sortable => "#{IssueStatus.table_name}.position"), QueryColumn.new(:priority, :sortable => "#{Enumeration.table_name}.position"), QueryColumn.new(:subject), + QueryColumn.new(:author), QueryColumn.new(:assigned_to, :sortable => "#{User.table_name}.lastname"), QueryColumn.new(:updated_on, :sortable => "#{Issue.table_name}.updated_on"), QueryColumn.new(:category, :sortable => "#{IssueCategory.table_name}.name"), |