2014-08-28 15:21:05 +02:00
|
|
|
class TicketsController < ApplicationController
|
2014-11-06 14:58:51 +01:00
|
|
|
before_filter :authenticate_user!
|
2014-08-28 15:21:05 +02:00
|
|
|
load_resource :conference, find_by: :short_title
|
|
|
|
|
load_resource :tickets, class: Ticket
|
|
|
|
|
authorize_resource :conference_registrations, class: Registration
|
|
|
|
|
|
|
|
|
|
def index; end
|
|
|
|
|
end
|