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