foodsoft/plugins/printer/config/routes.rb
2019-02-05 23:32:20 +01:00

11 lines
266 B
Ruby

Rails.application.routes.draw do
scope '/:foodcoop' do
resources :printer, only: [:show] do
get :socket, on: :collection
end
resources :printer_jobs, only: [:index, :create, :show, :destroy] do
get :document, on: :member
end
end
end