clarion/app/controllers/api/conferences_controller.rb
2023-10-30 21:10:14 +02:00

8 lines
149 B
Ruby

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