Skip to content

Instantly share code, notes, and snippets.

@austinklenk
Created September 13, 2015 21:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save austinklenk/57c713ee2e5f029c507c to your computer and use it in GitHub Desktop.
Save austinklenk/57c713ee2e5f029c507c to your computer and use it in GitHub Desktop.
Sales-Macbook-Air:Workorder serveradmin$ rake routes
Prefix Verb URI Pattern Controller#Action
new_admin_session GET /admins/sign_in(.:format) devise/sessions#new
admin_session POST /admins/sign_in(.:format) devise/sessions#create
destroy_admin_session DELETE /admins/sign_out(.:format) devise/sessions#destroy
admin_password POST /admins/password(.:format) devise/passwords#create
new_admin_password GET /admins/password/new(.:format) devise/passwords#new
edit_admin_password GET /admins/password/edit(.:format) devise/passwords#edit
PATCH /admins/password(.:format) devise/passwords#update
PUT /admins/password(.:format) devise/passwords#update
cancel_admin_registration GET /admins/cancel(.:format) devise_invitable/registrations#cancel
admin_registration POST /admins(.:format) devise_invitable/registrations#create
new_admin_registration GET /admins/sign_up(.:format) devise_invitable/registrations#new
edit_admin_registration GET /admins/edit(.:format) devise_invitable/registrations#edit
PATCH /admins(.:format) devise_invitable/registrations#update
PUT /admins(.:format) devise_invitable/registrations#update
DELETE /admins(.:format) devise_invitable/registrations#destroy
rails_admin /admin RailsAdmin::Engine
notes GET /notes(.:format) notes#index
POST /notes(.:format) notes#create
new_note GET /notes/new(.:format) notes#new
edit_note GET /notes/:id/edit(.:format) notes#edit
note GET /notes/:id(.:format) notes#show
PATCH /notes/:id(.:format) notes#update
PUT /notes/:id(.:format) notes#update
DELETE /notes/:id(.:format) notes#destroy
guests GET /guests(.:format) guests#index
POST /guests(.:format) guests#create
new_guest GET /guests/new(.:format) guests#new
edit_guest GET /guests/:id/edit(.:format) guests#edit
guest GET /guests/:id(.:format) guests#show
PATCH /guests/:id(.:format) guests#update
PUT /guests/:id(.:format) guests#update
DELETE /guests/:id(.:format) guests#destroy
calls GET /calls(.:format) calls#index
POST /calls(.:format) calls#create
new_call GET /calls/new(.:format) calls#new
edit_call GET /calls/:id/edit(.:format) calls#edit
call GET /calls/:id(.:format) calls#show
PATCH /calls/:id(.:format) calls#update
PUT /calls/:id(.:format) calls#update
DELETE /calls/:id(.:format) calls#destroy
new_user_session GET /users/sign_in(.:format) users/sessions#new
user_session POST /users/sign_in(.:format) users/sessions#create
destroy_user_session DELETE /users/sign_out(.:format) users/sessions#destroy
user_password POST /users/password(.:format) devise/passwords#create
new_user_password GET /users/password/new(.:format) devise/passwords#new
edit_user_password GET /users/password/edit(.:format) devise/passwords#edit
PATCH /users/password(.:format) devise/passwords#update
PUT /users/password(.:format) devise/passwords#update
cancel_user_registration GET /users/cancel(.:format) devise_invitable/registrations#cancel
user_registration POST /users(.:format) devise_invitable/registrations#create
new_user_registration GET /users/sign_up(.:format) devise_invitable/registrations#new
edit_user_registration GET /users/edit(.:format) devise_invitable/registrations#edit
PATCH /users(.:format) devise_invitable/registrations#update
PUT /users(.:format) devise_invitable/registrations#update
DELETE /users(.:format) devise_invitable/registrations#destroy
accept_user_invitation GET /users/invitation/accept(.:format) users/invitations#edit
remove_user_invitation GET /users/invitation/remove(.:format) users/invitations#destroy
user_invitation POST /users/invitation(.:format) users/invitations#create
new_user_invitation GET /users/invitation/new(.:format) users/invitations#new
PATCH /users/invitation(.:format) users/invitations#update
PUT /users/invitation(.:format) users/invitations#update
user GET /users/:id(.:format) users#show
login GET /login(.:format) users/sessions#new
import_customers POST /customers/import(.:format) customers#import
customers GET /customers(.:format) customers#index
POST /customers(.:format) customers#create
new_customer GET /customers/new(.:format) customers#new
edit_customer GET /customers/:id/edit(.:format) customers#edit
customer GET /customers/:id(.:format) customers#show
PATCH /customers/:id(.:format) customers#update
PUT /customers/:id(.:format) customers#update
DELETE /customers/:id(.:format) customers#destroy
customer_camper_orders GET /customers/:customer_id/campers/:camper_id/orders(.:format) orders#index
POST /customers/:customer_id/campers/:camper_id/orders(.:format) orders#create
new_customer_camper_order GET /customers/:customer_id/campers/:camper_id/orders/new(.:format) orders#new
edit_order GET /orders/:id/edit(.:format) orders#edit
order GET /orders/:id(.:format) orders#show
PATCH /orders/:id(.:format) orders#update
PUT /orders/:id(.:format) orders#update
DELETE /orders/:id(.:format) orders#destroy
customer_campers GET /customers/:customer_id/campers(.:format) campers#index
POST /customers/:customer_id/campers(.:format) campers#create
new_customer_camper GET /customers/:customer_id/campers/new(.:format) campers#new
edit_customer_camper GET /customers/:customer_id/campers/:id/edit(.:format) campers#edit
customer_camper GET /customers/:customer_id/campers/:id(.:format) campers#show
PATCH /customers/:customer_id/campers/:id(.:format) campers#update
PUT /customers/:customer_id/campers/:id(.:format) campers#update
DELETE /customers/:customer_id/campers/:id(.:format) campers#destroy
GET /customers(.:format) customers#index
POST /customers(.:format) customers#create
GET /customers/new(.:format) customers#new
GET /customers/:id/edit(.:format) customers#edit
GET /customers/:id(.:format) customers#show
PATCH /customers/:id(.:format) customers#update
PUT /customers/:id(.:format) customers#update
DELETE /customers/:id(.:format) customers#destroy
root GET / dashboard#index
Routes for RailsAdmin::Engine:
dashboard GET / rails_admin/main#dashboard
index GET|POST /:model_name(.:format) rails_admin/main#index
new GET|POST /:model_name/new(.:format) rails_admin/main#new
export GET|POST /:model_name/export(.:format) rails_admin/main#export
bulk_delete POST|DELETE /:model_name/bulk_delete(.:format) rails_admin/main#bulk_delete
bulk_action POST /:model_name/bulk_action(.:format) rails_admin/main#bulk_action
show GET /:model_name/:id(.:format) rails_admin/main#show
edit GET|PUT /:model_name/:id/edit(.:format) rails_admin/main#edit
delete GET|DELETE /:model_name/:id/delete(.:format) rails_admin/main#delete
show_in_app GET /:model_name/:id/show_in_app(.:format) rails_admin/main#show_in_app
Sales-Macbook-Air:Workorder serveradmin$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment