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
2
2
@ moduledoc false
3
3
use Algora.Schema
4
4
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ defmodule AlgoraWeb.BountiesLive do
46
46
47
47
defp assign_tickets ( socket ) do
48
48
tickets =
49
- Bounties.BountyListing . list (
49
+ Bounties.PrizePool . list (
50
50
status: :open ,
51
51
tech_stack: socket . assigns . current_user . tech_stack ,
52
52
limit: 100
Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ defmodule AlgoraWeb.Community.DashboardLive do
276
276
277
277
defp assign_tickets ( socket ) do
278
278
tickets =
279
- Bounties.BountyListing . list (
279
+ Bounties.PrizePool . list (
280
280
status: :open ,
281
281
tech_stack: socket . assigns . current_user . tech_stack ,
282
282
limit: 100
Original file line number Diff line number Diff line change @@ -683,7 +683,7 @@ defmodule AlgoraWeb.SwiftBountiesLive do
683
683
684
684
defp assign_tickets ( socket ) do
685
685
tickets =
686
- Bounties.BountyListing . list (
686
+ Bounties.PrizePool . list (
687
687
status: :open ,
688
688
tech_stack: [ "Swift" ] ,
689
689
limit: 100
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ defmodule AlgoraWeb.User.DashboardLive do
217
217
218
218
defp assign_tickets ( socket ) do
219
219
tickets =
220
- Bounties.BountyListing . list (
220
+ Bounties.PrizePool . list (
221
221
status: :open ,
222
222
tech_stack: socket . assigns . current_user . tech_stack ,
223
223
limit: 100
You can’t perform that action at this time.
0 commit comments