vereto-api/config/routes.rb

10 lines
280 B
Ruby
Raw Normal View History

2018-02-16 09:12:51 +00:00
Rails.application.routes.draw do
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
2018-02-16 11:52:56 +00:00
resources :todos do
resources :items
end
2018-02-16 15:02:03 +00:00
post 'auth/login', to: 'authentication#authenticate'
post 'signup', to: 'users#create'
2018-02-16 09:12:51 +00:00
end