mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 04:04:03 +00:00
9 lines
258 B
Ruby
9 lines
258 B
Ruby
|
|
class TicketsController < ApplicationController
|
||
|
|
before_filter :verify_user
|
||
|
|
load_resource :conference, find_by: :short_title
|
||
|
|
load_resource :tickets, class: Ticket
|
||
|
|
authorize_resource :conference_registrations, class: Registration
|
||
|
|
|
||
|
|
def index; end
|
||
|
|
end
|