class AppProxyController < ApplicationController


  def by_product
    #render layout: false, content_type: 'application/json'
    @product = Course.find_by(product_id: params[:product_id])
    respond_to do |format|
      format.json #{ render json: @product }
    end
  end

end