summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/static_controller.rb3
-rw-r--r--app/controllers/tournaments_controller.rb2
2 files changed, 1 insertions, 4 deletions
diff --git a/app/controllers/static_controller.rb b/app/controllers/static_controller.rb
index 038cc19..6fc9490 100644
--- a/app/controllers/static_controller.rb
+++ b/app/controllers/static_controller.rb
@@ -1,7 +1,4 @@
class StaticController < ApplicationController
def homepage
end
-
- def test
- end
end
diff --git a/app/controllers/tournaments_controller.rb b/app/controllers/tournaments_controller.rb
index b276368..0390051 100644
--- a/app/controllers/tournaments_controller.rb
+++ b/app/controllers/tournaments_controller.rb
@@ -33,7 +33,7 @@ class TournamentsController < ApplicationController
def new
@games = Game.all
if params[:tournament]
- @tournament = Tournament.new(game: Game.find(params[:tournament][:game_id]))
+ @tournament = Tournament.new(tournament_params)
else
@tournament = Tournament.new()
end