engine/app/controllers/locomotive/api/current_site_controller.rb

12 lines
160 B
Ruby

module Locomotive
module Api
class CurrentSiteController < BaseController
def show
respond_with(current_site)
end
end
end
end