mirror of
https://github.com/openSUSE/osem.git
synced 2026-05-24 08:28:12 -04:00
9 lines
265 B
Ruby
9 lines
265 B
Ruby
class TicketsController < ApplicationController
|
|
before_filter :authenticate_user!
|
|
load_resource :conference, find_by: :short_title
|
|
load_resource :tickets, class: Ticket
|
|
authorize_resource :conference_registrations, class: Registration
|
|
|
|
def index; end
|
|
end
|