Skip to content

Commit

Permalink
Fix invalid permission class (#4894)
Browse files Browse the repository at this point in the history
Fixed invalid permission class

Co-authored-by: Katherine Fleming <[email protected]>
  • Loading branch information
axelstudios and kflemin authored Dec 10, 2024
1 parent e959163 commit e9f393f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seed/views/v3/column_list_profiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def list_comstock_columns(org_id):

return results

@has_perm_class("requires_root_member")
@has_perm_class("requires_root_member_access")
@action(detail=True, methods=["PUT"])
def show_populated(self, request, pk):
column_list_profile = ColumnListProfile.objects.get(pk=pk)
Expand Down

0 comments on commit e9f393f

Please sign in to comment.