JSONApi progress

This commit is contained in:
2015-09-03 20:42:48 +02:00
parent f47a8a9ed0
commit e4dde28dd0
27 changed files with 215 additions and 64 deletions
+8 -1
View File
@@ -83,10 +83,17 @@ Qwaiter::Application.routes.draw do
get :current
end
resources :orders, only: [:index]
member do
get :table
end
end
resources :orders, only: [:create]
resources :tables, only: [:show]
resources :tables, only: [:show] do
member do
get :supplier
end
end
end