add logic for invitation

This commit is contained in:
zandercymatics 2024-12-11 12:57:57 -07:00
parent ae770ab3c2
commit 2bc8d38002
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
7 changed files with 106 additions and 51 deletions

View file

@ -3791,7 +3791,7 @@ class WaffleFlagAdmin(FlagAdmin):
if extra_context is None:
extra_context = {}
extra_context["dns_prototype_flag"] = flag_is_active_for_user(request.user, "dns_prototype_flag")
extra_context["organization_member"] = flag_is_active_for_user(request.user, "organization_member")
extra_context["organization_members"] = flag_is_active_for_user(request.user, "organization_members")
return super().changelist_view(request, extra_context=extra_context)