Skip to content

Commit

Permalink
fix legacy index
Browse files Browse the repository at this point in the history
  • Loading branch information
tmkontra committed Oct 16, 2021
1 parent 7d196e7 commit d15babe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions bullion-core/lib/bullion_core.ex
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ defmodule BullionCore do
@save_buyin_fn Application.fetch_env!(:bullion_core, :save_buyin_fn)
@save_cashout_fn Application.fetch_env!(:bullion_core, :save_cashout_fn)

def hello do
:world
end

@spec table_lookup(binary(), (binary -> Table | nil)) :: Table | nil
def table_lookup(table_id, lookup_fn \\ @table_lookup_fn) when is_binary(table_id) do
lookup_fn.(table_id)
Expand Down
2 changes: 1 addition & 1 deletion bullion/lib/bullion_web/templates/page/index.html.eex
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="btn white darken-4 col s10 m4">
<a href="<%= Routes.game_path(@conn, :new_game) %>" style="text-transform:none">
<a href="<%= Routes.game_path(@conn, :new) %>" style="text-transform:none">
<button>Start a Game</button>
</a>
<br><br><br>
Expand Down

0 comments on commit d15babe

Please sign in to comment.