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