This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-03-15 23:12:48 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 20:09:25 +02:00
|
|
|
class Api::V1::InstancesController < Api::BaseController
|
2017-03-15 23:12:48 +01:00
|
|
|
respond_to :json
|
2019-05-03 20:39:19 +02:00
|
|
|
skip_before_action :set_cache_headers
|
2017-03-15 23:12:48 +01:00
|
|
|
|
2017-07-07 04:02:06 +02:00
|
|
|
def show
|
2018-09-24 16:15:49 +02:00
|
|
|
render_cached_json('api:v1:instances', expires_in: 5.minutes) do
|
|
|
|
ActiveModelSerializers::SerializableResource.new({}, serializer: REST::InstanceSerializer)
|
|
|
|
end
|
2017-07-07 04:02:06 +02:00
|
|
|
end
|
2017-03-15 23:12:48 +01:00
|
|
|
end
|