houdini/app/controllers/nonprofits/charges_controller.rb

18 lines
544 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 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