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