2015-09-25 14:24:32 +02:00
|
|
|
class BarcodesController < ApplicationController
|
2015-10-07 16:39:06 +02:00
|
|
|
load_and_authorize_resource :product, only: :create
|
|
|
|
load_and_authorize_resource :barcode, through: :product, only: :create
|
2015-09-25 14:24:32 +02:00
|
|
|
|
|
|
|
def create
|
|
|
|
@barcode.save
|
2015-09-26 11:57:41 +02:00
|
|
|
redirect_to barcode_products_path, notice: "Barcode successfully linked!"
|
2015-09-25 14:24:32 +02:00
|
|
|
end
|
|
|
|
|
2015-09-28 21:51:40 +02:00
|
|
|
def show
|
2015-10-07 16:42:05 +02:00
|
|
|
@barcode = Barcode.find_by(code: params[:id])
|
2015-10-07 16:49:29 +02:00
|
|
|
render json: @barcode.try(:product)
|
2015-09-28 21:51:40 +02:00
|
|
|
end
|
|
|
|
|
2015-09-25 14:24:32 +02:00
|
|
|
private
|
|
|
|
|
|
|
|
def barcode_params
|
|
|
|
params.require(:barcode).permit(:code)
|
|
|
|
end
|
|
|
|
end
|