2017-03-15 18:12:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 14:09:25 -04:00
|
|
|
class Api::V1::InstancesController < Api::BaseController
|
2017-03-15 18:12:48 -04:00
|
|
|
respond_to :json
|
2019-07-30 05:10:46 -04:00
|
|
|
|
2019-05-03 14:39:19 -04:00
|
|
|
skip_before_action :set_cache_headers
|
2017-03-15 18:12:48 -04:00
|
|
|
|
2017-07-06 22:02:06 -04:00
|
|
|
def show
|
2019-07-21 16:32:16 -04:00
|
|
|
expires_in 3.minutes, public: true
|
2019-07-23 05:10:42 -04:00
|
|
|
render_with_cache json: {}, serializer: REST::InstanceSerializer, root: 'instance'
|
2017-07-06 22:02:06 -04:00
|
|
|
end
|
2017-03-15 18:12:48 -04:00
|
|
|
end
|