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