8 lines
149 B
Ruby
8 lines
149 B
Ruby
class Api::ConferencesController < Api::ApplicationController
|
|
include ::PublicApiExposing
|
|
|
|
def index
|
|
@conferences = Conference.all
|
|
end
|
|
end
|