Save display times in the db
All checks were successful
CI / scan_ruby (push) Successful in 17s
CI / scan_js (push) Successful in 11s
CI / lint (push) Successful in 12s
CI / test (push) Successful in 41s

This commit is contained in:
sto
2025-03-26 17:00:06 +01:00
parent c98caeea92
commit a5d165c4b3
14 changed files with 78 additions and 56 deletions

View File

@@ -1,6 +1,4 @@
class ContestantsController < ApplicationController
include CompletionsConcern
before_action :set_contest
before_action :set_contestant, only: %i[ destroy edit update]
before_action :set_completions, only: %i[edit update ]
@@ -61,8 +59,6 @@ class ContestantsController < ApplicationController
def set_completions
@completions = @contestant.completions.order(:time_seconds)
extend_completions!(@completions)
@completions
end
def contestant_params