clarion/app/controllers/api/conferences_controller.rb
2024-10-01 01:36:19 +03:00

9 lines
177 B
Ruby

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