Files
openfoodnetwork/app/controllers/api/v1/customers_controller.rb
Matt-Yorkley 3128232d7e Create customers controller
And add new customers routes.

Disable them in production for now.
2022-03-02 11:55:46 +11:00

16 lines
217 B
Ruby

# frozen_string_literal: true
module Api
module V1
class CustomersController < Api::V1::BaseController
def index; end
def show; end
def update; end
def destroy; end
end
end
end