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
|
|
|
|
|
2017-07-07 04:02:06 +02:00
|
|
|
def show
|
|
|
|
render json: {}, serializer: REST::InstanceSerializer
|
|
|
|
end
|
2017-03-15 23:12:48 +01:00
|
|
|
end
|