2022-03-30 22:12:56 -05:00
|
|
|
Rails.application.routes.draw do
|
|
|
|
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
|
2022-04-04 13:18:03 -05:00
|
|
|
get "/cves", to: "cves#index"
|
|
|
|
get "/cves/:cve_id", to: "cves#show"
|
|
|
|
get "/cves/:year", to: "cves#show_year"
|
|
|
|
|
|
|
|
get "/cpes", to: "cpes#index"
|
|
|
|
get "/cpes/:id", to: "cpes#show"
|
2022-03-30 22:12:56 -05:00
|
|
|
end
|