Merge "Use policy_rules for user role assignment and group tabs" into stable/wallaby

This commit is contained in:
Zuul 2021-04-09 14:27:08 +00:00 committed by Gerrit Code Review
commit 6f3a66ab36
1 changed files with 2 additions and 8 deletions

View File

@ -89,10 +89,7 @@ class RoleAssignmentsTab(tabs.TableTab):
slug = "roleassignments"
template_name = "horizon/common/_detail_table.html"
preload = False
def allowed(self, request):
return policy.check((("identity", "identity:list_role_assignments"),),
self.request)
policy_rules = (("identity", "identity:list_role_assignments"),)
def get_roleassignmentstable_data(self):
user = self.tab_group.kwargs['user']
@ -139,10 +136,7 @@ class GroupsTab(tabs.TableTab):
slug = "groups"
template_name = "horizon/common/_detail_table.html"
preload = False
def allowed(self, request):
return policy.check((("identity", "identity:list_groups"),),
self.request)
policy_rules = (("identity", "identity:list_groups"),)
def get_groupstable_data(self):
user_groups = []