houdini/app/controllers/nonprofits/refunds_controller.rb

32 lines
941 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2020-06-12 20:03:43 +00:00
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
module Nonprofits
class RefundsController < ApplicationController
include Controllers::Nonprofit::Current
include Controllers::Nonprofit::Authorization
before_action :authenticate_nonprofit_user!
# post /charges/:charge_id/refunds
def create
charge = Qx.select('*').from('charges').where(id: charge_params[:charge_id]).execute.first
params[:refund][:user_id] = current_user.id
render_json { InsertRefunds.with_stripe(charge, charge_params['refund']) }
end
def index
charge = current_nonprofit.charges.find(params[:charge_id])
@refunds = charge.refunds
2020-06-10 19:24:03 +00:00
render locals: {refunds: @refund}}
end
private
def charge_params
params.require(:charge_id, refund: [:amount])
end
end
end