11 lines
158 B
Ruby
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
|