Skip to content

Commit

Permalink
fix: BountyListView should inherit from ListView not BaseProductView …
Browse files Browse the repository at this point in the history
…as authentication is not mandatory
  • Loading branch information
adrianmcphee committed Nov 6, 2024
1 parent 82fccd6 commit c306c07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def get_context_data(self, **kwargs):
})
return context

class BountyListView(BaseProductView, ListView):
class BountyListView(ListView):
"""View for listing all bounties"""
model = Bounty
template_name = "product_management/bounty/list.html"
Expand Down

0 comments on commit c306c07

Please sign in to comment.