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