houdini/app/controllers/nonprofits/charges_controller.rb

14 lines
289 B
Ruby
Raw Normal View History

module Nonprofits
class ChargesController < ApplicationController
include NonprofitHelper
before_filter :authenticate_nonprofit_user!, only: :index
# get /nonprofit/:nonprofit_id/charges
def index
redirect_to controller: :payments, action: :index
end # def index
end
end