2017-03-16 09:12:48 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-08 04:09:25 +10:00
|
|
|
class Api::V1::InstancesController < Api::BaseController
|
2019-05-04 04:39:19 +10:00
|
|
|
skip_before_action :set_cache_headers
|
2019-10-07 07:11:29 +11:00
|
|
|
skip_before_action :require_authenticated_user!, unless: :whitelist_mode?
|
2017-03-16 09:12:48 +11:00
|
|
|
|
2017-07-07 12:02:06 +10:00
|
|
|
def show
|
2019-07-22 06:32:16 +10:00
|
|
|
expires_in 3.minutes, public: true
|
2019-07-23 19:10:42 +10:00
|
|
|
render_with_cache json: {}, serializer: REST::InstanceSerializer, root: 'instance'
|
2017-07-07 12:02:06 +10:00
|
|
|
end
|
2017-03-16 09:12:48 +11:00
|
|
|
end
|