mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 12:14:03 +00:00
9 lines
224 B
Ruby
9 lines
224 B
Ruby
module Admin
|
|
class CommentsController < Admin::BaseController
|
|
load_and_authorize_resource
|
|
|
|
def index
|
|
@conferences_available = Conference.with_roles([:admin, :organizer, :cfp], current_user)
|
|
end
|
|
end
|
|
end
|