[IMP] board: do not filter actions anymore

Starting from v8.0, there's only "My Dashboard". We can assume that we
have access rights to all the actions we pin to our proper dashboard, so
we can remove this filtering. Furthermore, this was a large performance
pitfall.
This commit is contained in:
Richard Mathot 2014-08-21 09:56:56 +02:00
parent 8307a5f6ed
commit b26cd8ad6d
1 changed files with 0 additions and 1 deletions

View File

@ -49,7 +49,6 @@ class board_board(osv.osv):
('value', 'in', refs),
], context=context)
menu_ids = map(itemgetter('res_id'), IrValues.read(cr, uid, irv_ids, ['res_id'], context=context))
menu_ids = Menus._filter_visible_menus(cr, uid, menu_ids, context=context)
menu_names = Menus.name_get(cr, uid, menu_ids, context=context)
return [dict(id=m[0], name=m[1]) for m in menu_names]