Files
sx-fc/app/controllers/api/customer_controller.rb
2017-04-03 21:26:22 +06:30

11 lines
158 B
Ruby

class Api::CustomersController < ActionController::API
#List all active customers by name
def index
end
#Show customer by ID
def show
end
end