You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
377 B
14 lines
377 B
Bikedb::Application.routes.draw do
|
|
devise_for :users
|
|
root to: "static_pages#home"
|
|
|
|
resources :bikes do
|
|
get 'print_select' => 'bikes#print_select', on: :collection
|
|
get 'print_labels' => 'bikes#print_labels', on: :collection
|
|
patch 'mark_as_sold' => 'bikes#mark_as_sold', on: :member
|
|
end
|
|
|
|
resources :volunteers
|
|
resources :agencies
|
|
resources :clients
|
|
end
|
|
|