Your App: properties | routes

Routes

Routes match in priority from top to bottom

Helper HTTP Verb Path Controller#Action
Path / Url
status_path GET /status(.:format) status#uptime
GET /transactions/identifier/:transaction_id(.:format) transactions#fetch_by_transaction_id
transactions_email_path GET /transactions/email(.:format) transactions#fetch_by_email
transactions_path POST /transactions(.:format) transactions#create
PUT /transactions(.:format) transactions#update
speeds_path GET /speeds(.:format) speeds#index
speed_path GET /speeds/:id(.:format) speeds#show
junctions_path GET /junctions(.:format) junctions#index
junction_path GET /junctions/:id(.:format) junctions#show
incidents_path GET /incidents(.:format) incidents#index
incident_path GET /incidents/:id(.:format) incidents#show
roads_path GET /roads(.:format) roads#index
road_path GET /roads/:id(.:format) roads#show
GET /graphs/:road_id/:junction_id(.:format) graphs#generate
passwords_path POST /passwords(.:format) clearance/passwords#create
new_password_path GET /passwords/new(.:format) clearance/passwords#new
session_path POST /session(.:format) clearance/sessions#create
user_password_path POST /users/:user_id/password(.:format) clearance/passwords#create
edit_user_password_path GET /users/:user_id/password/edit(.:format) clearance/passwords#edit
PATCH /users/:user_id/password(.:format) clearance/passwords#update
PUT /users/:user_id/password(.:format) clearance/passwords#update
users_path POST /users(.:format) clearance/users#create
sign_in_path GET /sign_in(.:format) clearance/sessions#new
sign_out_path DELETE /sign_out(.:format) clearance/sessions#destroy
sign_up_path GET /sign_up(.:format) clearance/users#new