Add an exports page that allows a user to select which reports they want

to run
This commit is contained in:
Nelson Jovel 2024-08-01 12:55:30 -07:00
parent 400ed08c79
commit e760ee211c
16 changed files with 575 additions and 55 deletions

View file

@ -37,6 +37,8 @@ Rails.application.routes.draw do
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
get :reports, to: "reports#index"
get "reports/gps", to: "gps#index"
get :exports, to: "exports#index"
get "exports/csv", to: "exports#show"
get '/welcome', to: 'home#index'
root to: 'legacy/welcome#index'