Files
standardnotes-app-web/packages/web-server/config/routes.rb
2022-06-07 07:18:41 -05:00

8 lines
169 B
Ruby

Rails.application.routes.draw do
get "/healthcheck" => "health_check#index"
get '*unmatched_route', to: 'application#route_not_found'
root 'application#app'
end