File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- defmodule Algora.Bounties.BountyListing do
1+ defmodule Algora.Bounties.PrizePool do
22 @ moduledoc false
33 use Algora.Schema
44
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ defmodule AlgoraWeb.BountiesLive do
4646
4747 defp assign_tickets ( socket ) do
4848 tickets =
49- Bounties.BountyListing . list (
49+ Bounties.PrizePool . list (
5050 status: :open ,
5151 tech_stack: socket . assigns . current_user . tech_stack ,
5252 limit: 100
Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ defmodule AlgoraWeb.Community.DashboardLive do
276276
277277 defp assign_tickets ( socket ) do
278278 tickets =
279- Bounties.BountyListing . list (
279+ Bounties.PrizePool . list (
280280 status: :open ,
281281 tech_stack: socket . assigns . current_user . tech_stack ,
282282 limit: 100
Original file line number Diff line number Diff line change @@ -683,7 +683,7 @@ defmodule AlgoraWeb.SwiftBountiesLive do
683683
684684 defp assign_tickets ( socket ) do
685685 tickets =
686- Bounties.BountyListing . list (
686+ Bounties.PrizePool . list (
687687 status: :open ,
688688 tech_stack: [ "Swift" ] ,
689689 limit: 100
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ defmodule AlgoraWeb.User.DashboardLive do
217217
218218 defp assign_tickets ( socket ) do
219219 tickets =
220- Bounties.BountyListing . list (
220+ Bounties.PrizePool . list (
221221 status: :open ,
222222 tech_stack: socket . assigns . current_user . tech_stack ,
223223 limit: 100
You can’t perform that action at this time.
0 commit comments