2017-03-16 00:12:48 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 21:09:25 +03:00
|
|
|
class Api::V1::InstancesController < Api::BaseController
|
2017-03-16 00:12:48 +02:00
|
|
|
respond_to :json
|
|
|
|
|
2017-07-07 05:02:06 +03:00
|
|
|
def show
|
|
|
|
render json: {}, serializer: REST::InstanceSerializer
|
|
|
|
end
|
2017-03-16 00:12:48 +02:00
|
|
|
end
|