Advertisement
Guest User

Untitled

a guest
Nov 9th, 2018
495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.49 KB | None | 0 0
  1. Prefix Verb URI Pattern Controller#Action
  2. bank_accounts GET /bank_accounts(.:format) bank_accounts#index
  3. POST /bank_accounts(.:format) bank_accounts#create
  4. new_bank_account GET /bank_accounts/new(.:format) bank_accounts#new
  5. edit_bank_account GET /bank_accounts/:id/edit(.:format) bank_accounts#edit
  6. bank_account GET /bank_accounts/:id(.:format) bank_accounts#show
  7. PATCH /bank_accounts/:id(.:format) bank_accounts#update
  8. PUT /bank_accounts/:id(.:format) bank_accounts#update
  9. DELETE /bank_accounts/:id(.:format) bank_accounts#destroy
  10. stripe_event /stripe-events StripeEvent::Engine
  11. new_buyer_session GET /buyers/sign_in(.:format) devise/sessions#new
  12. buyer_session POST /buyers/sign_in(.:format) devise/sessions#create
  13. destroy_buyer_session DELETE /buyers/sign_out(.:format) devise/sessions#destroy
  14. new_buyer_password GET /buyers/password/new(.:format) devise/passwords#new
  15. edit_buyer_password GET /buyers/password/edit(.:format) devise/passwords#edit
  16. buyer_password PATCH /buyers/password(.:format) devise/passwords#update
  17. PUT /buyers/password(.:format) devise/passwords#update
  18. POST /buyers/password(.:format) devise/passwords#create
  19. cancel_buyer_registration GET /buyers/cancel(.:format) devise/registrations#cancel
  20. new_buyer_registration GET /buyers/sign_up(.:format) devise/registrations#new
  21. edit_buyer_registration GET /buyers/edit(.:format) devise/registrations#edit
  22. buyer_registration PATCH /buyers(.:format) devise/registrations#update
  23. PUT /buyers(.:format) devise/registrations#update
  24. DELETE /buyers(.:format) devise/registrations#destroy
  25. POST /buyers(.:format) devise/registrations#create
  26. orders GET /orders(.:format) orders#index
  27. POST /orders(.:format) orders#create
  28. new_order GET /orders/new(.:format) orders#new
  29. edit_order GET /orders/:id/edit(.:format) orders#edit
  30. order GET /orders/:id(.:format) orders#show
  31. PATCH /orders/:id(.:format) orders#update
  32. PUT /orders/:id(.:format) orders#update
  33. DELETE /orders/:id(.:format) orders#destroy
  34. new_user_session GET /users/sign_in(.:format) devise/sessions#new
  35. user_session POST /users/sign_in(.:format) devise/sessions#create
  36. destroy_user_session DELETE /users/sign_out(.:format) devise/sessions#destroy
  37. new_user_password GET /users/password/new(.:format) devise/passwords#new
  38. edit_user_password GET /users/password/edit(.:format) devise/passwords#edit
  39. user_password PATCH /users/password(.:format) devise/passwords#update
  40. PUT /users/password(.:format) devise/passwords#update
  41. POST /users/password(.:format) devise/passwords#create
  42. cancel_user_registration GET /users/cancel(.:format) devise/registrations#cancel
  43. new_user_registration GET /users/sign_up(.:format) devise/registrations#new
  44. edit_user_registration GET /users/edit(.:format) devise/registrations#edit
  45. user_registration PATCH /users(.:format) devise/registrations#update
  46. PUT /users(.:format) devise/registrations#update
  47. DELETE /users(.:format) devise/registrations#destroy
  48. POST /users(.:format) devise/registrations#create
  49. new_user_confirmation GET /users/confirmation/new(.:format) confirmations#new
  50. user_confirmation GET /users/confirmation(.:format) confirmations#show
  51. POST /users/confirmation(.:format) confirmations#create
  52. users GET /users(.:format) users#index
  53. POST /users(.:format) users#create
  54. new_user GET /users/new(.:format) users#new
  55. edit_user GET /users/:id/edit(.:format) users#edit
  56. user GET /users/:id(.:format) users#show
  57. PATCH /users/:id(.:format) users#update
  58. PUT /users/:id(.:format) users#update
  59. DELETE /users/:id(.:format) users#destroy
  60. user_stripe_accounts GET /users/:user_id/stripe_accounts(.:format) stripe_accounts#index
  61. POST /users/:user_id/stripe_accounts(.:format) stripe_accounts#create
  62. new_user_stripe_account GET /users/:user_id/stripe_accounts/new(.:format) stripe_accounts#new
  63. edit_user_stripe_account GET /users/:user_id/stripe_accounts/:id/edit(.:format) stripe_accounts#edit
  64. user_stripe_account GET /users/:user_id/stripe_accounts/:id(.:format) stripe_accounts#show
  65. PATCH /users/:user_id/stripe_accounts/:id(.:format) stripe_accounts#update
  66. PUT /users/:user_id/stripe_accounts/:id(.:format) stripe_accounts#update
  67. DELETE /users/:user_id/stripe_accounts/:id(.:format) stripe_accounts#destroy
  68. GET /users(.:format) users#index
  69. POST /users(.:format) users#create
  70. GET /users/new(.:format) users#new
  71. GET /users/:id/edit(.:format) users#edit
  72. GET /users/:id(.:format) users#show
  73. PATCH /users/:id(.:format) users#update
  74. PUT /users/:id(.:format) users#update
  75. DELETE /users/:id(.:format) users#destroy
  76. listing_orders GET /listings/:listing_id/orders(.:format) orders#index
  77. POST /listings/:listing_id/orders(.:format) orders#create
  78. new_listing_order GET /listings/:listing_id/orders/new(.:format) orders#new
  79. edit_listing_order GET /listings/:listing_id/orders/:id/edit(.:format) orders#edit
  80. listing_order GET /listings/:listing_id/orders/:id(.:format) orders#show
  81. PATCH /listings/:listing_id/orders/:id(.:format) orders#update
  82. PUT /listings/:listing_id/orders/:id(.:format) orders#update
  83. DELETE /listings/:listing_id/orders/:id(.:format) orders#destroy
  84. listings GET /listings(.:format) listings#index
  85. POST /listings(.:format) listings#create
  86. new_listing GET /listings/new(.:format) listings#new
  87. edit_listing GET /listings/:id/edit(.:format) listings#edit
  88. listing GET /listings/:id(.:format) listings#show
  89. PATCH /listings/:id(.:format) listings#update
  90. PUT /listings/:id(.:format) listings#update
  91. DELETE /listings/:id(.:format) listings#destroy
  92. stripe_ GET /stripe_(.:format) stripe_account#create
  93. stripe_new GET /stripe_new(.:format) stripe_account#new
  94. seller GET /seller(.:format) listings#seller
  95. stripe_accounts_full GET /stripe_accounts/full(.:format) stripe_accounts#full
  96. sales GET /sales(.:format) orders#sales
  97. POST /sales(.:format) orders#sales
  98. talent GET /talent(.:format) listings#listings_page
  99. purchases GET /purchases(.:format) orders#purchases
  100. dashboard GET /dashboard(.:format) dashboard#dashboard
  101. yoyo GET /yoyo(.:format) dashboard#tables
  102. charts GET /charts(.:format) dashboard#charts
  103. auth GET /auth(.:format) users#index
  104. stripe GET /stripe(.:format) listings#stripe
  105. car GET /car(.:format) listings#carousel
  106. root GET / listings#index
  107. rails_service_blob GET /rails/active_storage/blobs/:signed_id/*filename(.:format) active_storage/blobs#show
  108. rails_blob_representation GET /rails/active_storage/representations/:signed_blob_id/:variation_key/*filename(.:format) active_storage/representations#show
  109. rails_disk_service GET /rails/active_storage/disk/:encoded_key/*filename(.:format) active_storage/disk#show
  110. update_rails_disk_service PUT /rails/active_storage/disk/:encoded_token(.:format) active_storage/disk#update
  111. rails_direct_uploads POST /rails/active_storage/direct_uploads(.:format) active_storage/direct_uploads#create
  112.  
  113. Routes for StripeEvent::Engine:
  114. root POST / stripe_event/webhook#event
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement