mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 12:14:03 +00:00
7 lines
179 B
Ruby
7 lines
179 B
Ruby
class Api::V1::ConferencesController < Api::BaseController
|
|
respond_to :json
|
|
|
|
def index
|
|
render :json => Conference.all, :serializer => ConferencesArraySerializer
|
|
end
|
|
end
|