2017-03-15 22:12:48 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 19:09:25 +01:00
|
|
|
class Api::V1::InstancesController < Api::BaseController
|
2019-10-06 21:11:29 +01:00
|
|
|
skip_before_action :require_authenticated_user!, unless: :whitelist_mode?
|
2017-03-15 22:12:48 +00:00
|
|
|
|
2017-07-07 03:02:06 +01:00
|
|
|
def show
|
2019-07-21 21:32:16 +01:00
|
|
|
expires_in 3.minutes, public: true
|
2022-10-05 02:47:56 +01:00
|
|
|
render_with_cache json: InstancePresenter.new, serializer: REST::V1::InstanceSerializer, root: 'instance'
|
2017-07-07 03:02:06 +01:00
|
|
|
end
|
2017-03-15 22:12:48 +00:00
|
|
|
end
|