Skip to content

Instantly share code, notes, and snippets.

@nikikoh
Created January 2, 2021 12:15
Show Gist options
  • Save nikikoh/198b682f769990a2730b93757e7e8023 to your computer and use it in GitHub Desktop.
Save nikikoh/198b682f769990a2730b93757e7e8023 to your computer and use it in GitHub Desktop.
routes
Prefix Verb URI Pattern Controller#Action
root GET / boards#index
new_user_session GET /users/sign_in(.:format) devise/sessions#new
user_session POST /users/sign_in(.:format) devise/sessions#create
destroy_user_session DELETE /users/sign_out(.:format) devise/sessions#destroy
new_user_password GET /users/password/new(.:format) devise/passwords#new
edit_user_password GET /users/password/edit(.:format) devise/passwords#edit
user_password PATCH /users/password(.:format) devise/passwords#update
PUT /users/password(.:format) devise/passwords#update
POST /users/password(.:format) devise/passwords#create
cancel_user_registration GET /users/cancel(.:format) devise/registrations#cancel
new_user_registration GET /users/sign_up(.:format) devise/registrations#new
edit_user_registration GET /users/edit(.:format) devise/registrations#edit
user_registration PATCH /users(.:format) devise/registrations#update
PUT /users(.:format) devise/registrations#update
DELETE /users(.:format) devise/registrations#destroy
POST /users(.:format) devise/registrations#create
board_tasks GET /boards/:board_id/tasks(.:format) tasks#index
POST /boards/:board_id/tasks(.:format) tasks#create
new_board_task GET /boards/:board_id/tasks/new(.:format) tasks#new
edit_board_task GET /boards/:board_id/tasks/:id/edit(.:format) tasks#edit
board_task GET /boards/:board_id/tasks/:id(.:format) tasks#show
PATCH /boards/:board_id/tasks/:id(.:format) tasks#update
PUT /boards/:board_id/tasks/:id(.:format) tasks#update
DELETE /boards/:board_id/tasks/:id(.:format) tasks#destroy
boards GET /boards(.:format) boards#index
POST /boards(.:format) boards#create
new_board GET /boards/new(.:format) boards#new
edit_board GET /boards/:id/edit(.:format) boards#edit
board GET /boards/:id(.:format) boards#show
PATCH /boards/:id(.:format) boards#update
PUT /boards/:id(.:format) boards#update
DELETE /boards/:id(.:format) boards#destroy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment