Ticket Purchase Index Page

List all the unpaid ticket purchases of the user for that conference and allow user to pay for them.
This commit is contained in:
siddhantbajaj 2017-06-26 06:07:52 +05:30
parent 2cc97a92f5
commit a327d2cbd2
5 changed files with 43 additions and 1 deletions

View file

@ -125,7 +125,7 @@ Osem::Application.routes.draw do
# TODO: change conference_registrations to singular resource
resource :conference_registration, path: 'register'
resources :tickets, only: [:index]
resources :ticket_purchases, only: [:create, :destroy]
resources :ticket_purchases, only: [:create, :destroy, :index]
resources :payments, only: [:index, :new, :create]
resources :physical_ticket, only: [:index, :show]
resource :subscriptions, only: [:create, :destroy]