about summary refs log tree commit diff stats
path: root/app/controllers/admin/games_controller.rb
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2019-03-13 10:18:45 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2019-03-13 10:18:45 -0400
commitbcf6445d92f1a57dff0b97bd9309f40b70088448 (patch)
tree94d908f819d4e1360b37ea794b26fde4dde81944 /app/controllers/admin/games_controller.rb
parent837537b14b01a8c7504b786e1bbf7a350c21242a (diff)
downloadthoughts-bcf6445d92f1a57dff0b97bd9309f40b70088448.tar.gz
thoughts-bcf6445d92f1a57dff0b97bd9309f40b70088448.tar.bz2
thoughts-bcf6445d92f1a57dff0b97bd9309f40b70088448.zip
Added started/finished on dates to Game
Diffstat (limited to 'app/controllers/admin/games_controller.rb')
-rw-r--r--app/controllers/admin/games_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin/games_controller.rb b/app/controllers/admin/games_controller.rb index 5bc6de9..ee5fe59 100644 --- a/app/controllers/admin/games_controller.rb +++ b/app/controllers/admin/games_controller.rb
@@ -46,7 +46,7 @@ class Admin::GamesController < Admin::AdminController
46 private 46 private
47 47
48 def game_params 48 def game_params
49 params.require(:game).permit(:title, :description, :status, :progress, :score) 49 params.require(:game).permit(:title, :description, :status, :progress, :score, :started_on, :finished_on)
50 end 50 end
51 51
52 def set_section 52 def set_section