51 lines
1.3 KiB
Ruby
51 lines
1.3 KiB
Ruby
class PriceReportsController < ApplicationController
|
|
before_action :set_price_report, only: %i[ show update destroy ]
|
|
|
|
# GET /price_reports
|
|
def index
|
|
@price_reports = PriceReport.all
|
|
|
|
render json: @price_reports
|
|
end
|
|
|
|
# GET /price_reports/1
|
|
def show
|
|
render json: @price_report
|
|
end
|
|
|
|
# POST /price_reports
|
|
def create
|
|
@price_report = PriceReport.new(price_report_params)
|
|
|
|
if @price_report.save
|
|
render json: @price_report, status: :created, location: @price_report
|
|
else
|
|
render json: @price_report.errors, status: :unprocessable_content
|
|
end
|
|
end
|
|
|
|
# PATCH/PUT /price_reports/1
|
|
def update
|
|
if @price_report.update(price_report_params)
|
|
render json: @price_report
|
|
else
|
|
render json: @price_report.errors, status: :unprocessable_content
|
|
end
|
|
end
|
|
|
|
# DELETE /price_reports/1
|
|
def destroy
|
|
@price_report.destroy!
|
|
end
|
|
|
|
private
|
|
# Use callbacks to share common setup or constraints between actions.
|
|
def set_price_report
|
|
@price_report = PriceReport.find(params.expect(:id))
|
|
end
|
|
|
|
# Only allow a list of trusted parameters through.
|
|
def price_report_params
|
|
params.expect(price_report: [ :price, :discount_price, :upvotes, :downvotes, :reported_at, :product_id, :store_id, :guest_id ])
|
|
end
|
|
end
|