houdini/app/controllers/nonprofits/refunds_controller.rb

22 lines
630 B
Ruby
Raw Normal View History

# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
module Nonprofits
class RefundsController < ApplicationController
2018-08-08 21:31:42 +00:00
include Controllers::NonprofitHelper
before_action :authenticate_nonprofit_user!
# post /charges/:charge_id/refunds
def create
charge = Qx.select("*").from("charges").where(id: params[:charge_id]).execute.first
params[:refund][:user_id] = current_user.id
render_json{ InsertRefunds.with_stripe(charge, params['refund']) }
end
def index
charge = current_nonprofit.charges.find(params[:charge_id])
@refunds = charge.refunds
end
end
end