clarion/app/controllers/api/conferences_controller.rb

9 lines
177 B
Ruby

class Api::ConferencesController < Api::ApplicationController
include ::PublicApiExposing
def index
@conferences = Conference.all
fresh_when @conferences
end
end