Add basic deadline to sections index

This commit is contained in:
Charlotte Van Petegem 2025-05-25 21:54:34 +02:00
parent 782355322e
commit f4106b9fb6
Signed by: chvp
SSH key fingerprint: SHA256:s9rb8jBVfdahqWHuBAcHCBP1wmj4eYQXZfqgz4H3E9E
15 changed files with 175 additions and 1 deletions

View file

@ -28,6 +28,8 @@ module EntranceExam
# Common ones are `templates`, `generators`, or `middleware`, for example.
config.autoload_lib(ignore: %w[assets tasks])
config.time_zone = 'Europe/Brussels'
# Configuration for the application, engines, and railties goes here.
#
# These settings can be overridden in specific environments using the files

View file

@ -21,4 +21,10 @@ Rails.application.routes.draw do
put :answer
end
end
resources "extensions", only: [] do
member do
put :confirm
end
end
end