mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 04:04:03 +00:00
11 lines
245 B
Ruby
11 lines
245 B
Ruby
module Admin
|
|
class CommentsController < Admin::BaseController
|
|
load_and_authorize_resource :conference, find_by: :short_title
|
|
load_and_authorize_resource
|
|
|
|
|
|
def index
|
|
@ordered_events = Event.order(:title).all
|
|
end
|
|
end
|
|
end
|