mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
fix: [trackers] typo
This commit is contained in:
parent
9323ac39e8
commit
a595bb5175
1 changed files with 1 additions and 1 deletions
|
@ -782,7 +782,7 @@ def get_trackers_dashboard(user_org, user_id):
|
|||
for raw in r_tracker.lrange('trackers:dashboard', 0, -1):
|
||||
tracker_uuid, timestamp, obj_type, subtype, obj_id = raw.split(':', 4)
|
||||
tracker = Tracker(tracker_uuid)
|
||||
if not Tracker.check_level(user_org, user_id):
|
||||
if not tracker.check_level(user_org, user_id):
|
||||
continue
|
||||
meta = tracker.get_meta(options={'description', 'tags'})
|
||||
if not meta.get('type'):
|
||||
|
|
Loading…
Reference in a new issue