# frozen_string_literal: true module Api # ProductsController class ProductsController < MasterController def show; end def index; end def create; end def update; end def destroy; end private def permitted_params params.permit(:name, :unitary_price, :bulk_price, :picture, :available_quantity, :categories) end end end