added all filter where we can select objects, to be displayed in our view

git-svn-id: https://dev.finn.de/svn/cockpit/branches/reporting_merge@1253 7926756e-e54e-46e6-9721-ed318f58905e
pull/6827/head
p.tessenow 15 years ago
parent e6f73180d6
commit 5b8a2f5c57
  1. 13
      app/models/cost_query/filter.rb

@ -3,7 +3,18 @@ require "set"
module CostQuery::Filter module CostQuery::Filter
def self.all def self.all
@all ||= Set[ @all ||= Set[
CostQuery::Filter::ActivityId] CostQuery::Filter::ActivityId,
CostQuery::Filter::AssignedToId,
CostQuery::Filter::CategoryId,
CostQuery::Filter::CostTypeId,
CostQuery::Filter::FixedVersionId,
CostQuery::Filter::IssueId,
CostQuery::Filter::PriorityId,
CostQuery::Filter::ProjectId,
CostQuery::Filter::StatusId,
CostQuery::Filter::TrackerId,
CostQuery::Filter::UserId
]
end end
def self.from_hash def self.from_hash

Loading…
Cancel
Save