Closed (fixed)
Project:
Case Tracker
Version:
master
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Reporter:
Created:
17 Aug 2007 at 08:26 UTC
Updated:
12 Nov 2007 at 22:41 UTC
I love the casetracker project as a simple issue tracker.
I'm missing 1 filter in the casetracker_views module:
It would be nice if you have a filter to get all the cases assigned to the current logged in user.
I figured it out what filter you have to add:
casetracker_views_tables() {
$tables['casetracker_case'] = array(
'name' => 'casetracker_case',
...
'filters' => array(
'assign_to_currentuid' => array(
'field' => 'assign_to',
'name' => t('Case Tracker: Assigned to Current User'),
'operator' => 'views_handler_operator_eqneq',
'list' => 'views_handler_filter_usercurrent',
'list-type' => 'select',
'help' => t('This allows you to filter by whether or not the case is assigned to the logged in user of the view.'),
),
...
Comments
Comment #1
zero2one commentedHmm, I'm not the only one who wants this feature:
Comment #2
zero2one commentedFixed in http://drupal.org/cvs?commit=85845
Comment #3
(not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.