about summary refs log tree commit diff stats
path: root/app
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-18 09:40:05 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2023-11-18 09:40:05 -0500
commit8cd389750c4cffd6a2552f6ab28a274410f69c34 (patch)
tree2549174d1728cf05965f2c15df76f2821bcf2c6f /app
parentfa123398b263283d3f770c81b3324e1b8602b490 (diff)
downloadwittle-8cd389750c4cffd6a2552f6ab28a274410f69c34.tar.gz
wittle-8cd389750c4cffd6a2552f6ab28a274410f69c34.tar.bz2
wittle-8cd389750c4cffd6a2552f6ab28a274410f69c34.zip
uniqueness on names per puzzle
Diffstat (limited to 'app')
-rw-r--r--app/controllers/wittle/puzzles_controller.rb2
-rw-r--r--app/models/wittle/score.rb1
2 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/wittle/puzzles_controller.rb b/app/controllers/wittle/puzzles_controller.rb index 9d846f9..a937aa1 100644 --- a/app/controllers/wittle/puzzles_controller.rb +++ b/app/controllers/wittle/puzzles_controller.rb
@@ -93,7 +93,7 @@ module Wittle
93 93
94 raise ActiveRecord::RecordNotFound unless @puzzle.latest? 94 raise ActiveRecord::RecordNotFound unless @puzzle.latest?
95 95
96 @puzzle.scores.create!(name: params[:name], ip: request.ip, seconds_taken: (params.include? :time) ? params[:time] : nil) 96 @puzzle.scores.create(name: params[:name], ip: request.ip, seconds_taken: (params.include? :time) ? params[:time] : nil)
97 97
98 redirect_to @puzzle 98 redirect_to @puzzle
99 end 99 end
diff --git a/app/models/wittle/score.rb b/app/models/wittle/score.rb index be00fda..54d2b89 100644 --- a/app/models/wittle/score.rb +++ b/app/models/wittle/score.rb
@@ -4,5 +4,6 @@ module Wittle
4 4
5 validates :name, presence: true 5 validates :name, presence: true
6 validates :ip, presence: true 6 validates :ip, presence: true
7 validates_uniqueness_of :name, scope: :puzzle_id
7 end 8 end
8end 9end