8 lines
133 B
Ruby
8 lines
133 B
Ruby
|
|
class Api::V1::ConferencesController < Api::BaseController
|
||
|
|
respond_to :json
|
||
|
|
|
||
|
|
def index
|
||
|
|
respond_with Conference.all
|
||
|
|
end
|
||
|
|
end
|