Sha256: 666cac56ce98526ae3dc24c285d178c7853f381209c18b5221e60ce6f73c964c

Contents?: true

Size: 468 Bytes

Versions: 8

Compression:

Stored size: 468 Bytes

Contents

require_dependency "phcdevworks_accounts_stripe/application_controller"

module PhcdevworksAccountsStripe
    class User::InvoicesController < ApplicationController

        # Security Filters
        before_action :authenticate_user!

        def user_invoice_list
            @user_invoice_list = Stripe::Invoice.list({customer: current_user.payments_customer_id})
        end

        def user_invoice_item

            
        end

    end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
phcdevworks_accounts_stripe-1.1.1 app/controllers/phcdevworks_accounts_stripe/user/invoices_controller.rb
phcdevworks_accounts_stripe-1.1.0 app/controllers/phcdevworks_accounts_stripe/user/invoices_controller.rb
phcdevworks_accounts_stripe-1.0.4 app/controllers/phcdevworks_accounts_stripe/user/invoices_controller.rb
phcdevworks_accounts_stripe-1.0.3 app/controllers/phcdevworks_accounts_stripe/user/invoices_controller.rb
phcdevworks_accounts_stripe-1.0.2 app/controllers/phcdevworks_accounts_stripe/user/invoices_controller.rb
phcdevworks_accounts_stripe-1.0.1 app/controllers/phcdevworks_accounts_stripe/user/invoices_controller.rb
phcdevworks_accounts_stripe-1.0.0 app/controllers/phcdevworks_accounts_stripe/user/invoices_controller.rb
phcdevworks_accounts_stripe-0.2.0 app/controllers/phcdevworks_accounts_stripe/user/invoices_controller.rb