vereto-api/config/routes.rb
2018-02-19 16:03:07 +00:00

10 lines
320 B
Ruby

Rails.application.routes.draw do
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
resources :todos do
resources :items
end
resources :articles
resources :users
post 'auth/login', to: 'authentication#authenticate'
post 'signup', to: 'users#create'
end