2018-03-25 16:15:39 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
2018-03-25 17:30:42 +00:00
|
|
|
module Nonprofits
|
|
|
|
class RefundsController < ApplicationController
|
2018-08-08 21:31:42 +00:00
|
|
|
include Controllers::NonprofitHelper
|
2018-03-25 17:30:42 +00:00
|
|
|
|
2019-07-13 07:53:59 +00:00
|
|
|
before_action :authenticate_nonprofit_user!
|
2018-03-25 17:30:42 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|