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