Skip to content

Commit

Permalink
fix: cache invalidation on new members invite (#4699)
Browse files Browse the repository at this point in the history
  • Loading branch information
pablohashescobar authored Jun 5, 2024
1 parent 249e71e commit 911832d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions apiserver/plane/authentication/utils/workspace_project_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
WorkspaceMember,
WorkspaceMemberInvite,
)
from plane.utils.cache import invalidate_cache_directly


def process_workspace_project_invitations(user):
Expand All @@ -26,6 +27,16 @@ def process_workspace_project_invitations(user):
ignore_conflicts=True,
)

[
invalidate_cache_directly(
path=f"/api/workspaces/{str(workspace_member_invite.workspace.slug)}/members/",
url_params=False,
user=False,
multiple=True,
)
for workspace_member_invite in workspace_member_invites
]

# Check if user has any project invites
project_member_invites = ProjectMemberInvite.objects.filter(
email=user.email, accepted=True
Expand Down
2 changes: 1 addition & 1 deletion apiserver/plane/utils/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def invalidate_cache_directly(
custom_path = path if path is not None else request.get_full_path()
auth_header = (
None
if request.user.is_anonymous
if request and request.user.is_anonymous
else str(request.user.id) if user else None
)
key = generate_cache_key(custom_path, auth_header)
Expand Down

0 comments on commit 911832d

Please sign in to comment.