summaryrefslogtreecommitdiff
path: root/app/controllers/v1/services_controller.rb
blob: 594940e0909c5af0327de604a35205686aeff114 (plain)
1
2
3
4
5
6
7
8
class V1::ServicesController < ApplicationController

  respond_to :json

  def show
    respond_with current_user.effective_service_level
  end
end