Page MenuHomeGRNET

routes.rb
No OneTemporary

File Metadata

Created
Sat, Aug 30, 11:59 AM

routes.rb

Rails.application.routes.draw do
resources :clients, only: [:index, :show]
resources :hosts, only: [:new, :create, :show, :edit, :update, :destroy]
resources :jobs, only: [:new, :create, :show, :edit, :update, :destroy]
root 'clients#index'
end

Event Timeline