diff --git a/bin/headercheckdashboardproxy b/bin/headercheckdashboardproxy index ea28fbd..476f3df 100644 --- a/bin/headercheckdashboardproxy +++ b/bin/headercheckdashboardproxy @@ -55,12 +55,10 @@ async def serve_file(request: Request, file_path: str) : shouldremove = True if 'groups' in service.attrs.keys() : allowed_groups = service['groups'].split(',') - else : - allowed_groups = ["Admins"] - if not list(set(current_groups) & set(allowed_groups)) : - shouldremove = True - else : - shouldremove = False + if not list(set(current_groups) & set(allowed_groups)) : + shouldremove = True + else : + shouldremove = False if shouldremove : service.decompose() for category in soup.select('li.category:not(:has(ul li))') :