Files
old-roraccounting/config/routes.rb
2019-06-22 06:17:48 +02:00

13 lines
293 B
Ruby

Rails.application.routes.draw do
constraints format: :json do
resources :money_moves
resources :homies do
collection do
get 'cash'
end
end
end
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end