Create customers controller

And add new customers routes.

Disable them in production for now.
This commit is contained in:
Matt-Yorkley
2021-06-20 09:08:05 +01:00
committed by Maikel Linke
parent c4e2c8cb4c
commit 3128232d7e
2 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
# 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