You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
Rails.application.routes.draw do |
|
devise_for :users, controllers: { passwords: "users/passwords" } |
|
devise_scope :user do |
|
get "confirmations/reset", to: "users/passwords#reset_confirmation" |
|
end |
|
|
|
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html |
|
ActiveAdmin.routes(self) |
|
root to: "test#index" |
|
get "about", to: "about#index" |
|
|
|
form_handler = FormHandler.instance |
|
form = form_handler.get_form("2021_2022") |
|
|
|
resources :case_logs do |
|
collection do |
|
post "/bulk_upload", to: "bulk_upload#bulk_upload" |
|
get "/bulk_upload", to: "bulk_upload#show" |
|
end |
|
|
|
member do |
|
post "/form", to: "case_logs#submit_form" |
|
end |
|
|
|
form.all_pages.keys.map do |page| |
|
get page.to_s, to: "case_logs##{page}" |
|
get "#{page}/soft_validations", to: "soft_validations#show" if form.soft_validations_for_page(page) |
|
end |
|
|
|
form.all_subsections.keys.map do |subsection| |
|
get "#{subsection}/check_answers", to: "case_logs#check_answers" |
|
end |
|
end |
|
end
|
|
|