forgeplus/app/controllers/customers_controller.rb

7 lines
159 B
Ruby

class CustomersController < ApplicationController
def show
targets = UsersService.new.user_info params, current_user
render json: targets
end
end