Skip to content

Commit

Permalink
visits -> clicks in views.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nikochiko committed Dec 24, 2024
1 parent 98b5f36 commit fe4b194
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workspaces/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def invitation_page(
set_current_workspace(session, int(invite.workspace_id))
raise gui.RedirectException(get_route_path(members_route))

WorkspaceInvite.objects.filter(id=invite.id).update(visits=F("visits") + 1)
WorkspaceInvite.objects.filter(id=invite.id).update(clicks=F("clicks") + 1)

with (
gui.div(
Expand Down

0 comments on commit fe4b194

Please sign in to comment.