mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
8 lines
265 B
Ruby
8 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
|