houdini/app/controllers/nonprofits/charges_controller.rb
2020-06-15 10:26:57 -05:00

17 lines
544 B
Ruby

# frozen_string_literal: true
# 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 ChargesController < ApplicationController
include Controllers::Nonprofit::Current
include Controllers::Nonprofit::Authorization
before_action :authenticate_nonprofit_user!, only: :index
# get /nonprofit/:nonprofit_id/charges
def index
redirect_to controller: :payments, action: :index
end # def index
end
end