Skip to content

Commit

Permalink
fix: missing _
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Puerto committed Feb 12, 2025
1 parent 20b8f37 commit 936c2f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/user_workspaces_server/views/workspace_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get(self, request, workspace_id=None):
workspace = workspace.filter(**{key: params[key]})

workspaces = list(
workspace.exclude(sharedworkspace_set__is_accepted=False)
workspace.exclude(shared_workspace_set__is_accepted=False)
.all()
.values(*models.Workspace.get_dict_fields())
)
Expand Down

0 comments on commit 936c2f6

Please sign in to comment.