Sha256: 55f8947c9149bc8cd343b203f1f349b37ddeeba3101283d7e93cc445fd317f38

Contents?: true

Size: 480 Bytes

Versions: 8

Compression:

Stored size: 480 Bytes

Contents

require_dependency "phcdevworks_accounts_stripe/application_controller"

module PhcdevworksAccountsStripe
    class User::SubscriptionController < ApplicationController

        # Security Filters
        before_action :authenticate_user!

        def user_subscription_item
            @user_subscription_item = Stripe::Subscription.list({customer: current_user.payments_customer_id})

        end

        def user_subscription_cancel
        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/subscription_controller.rb
phcdevworks_accounts_stripe-1.1.0 app/controllers/phcdevworks_accounts_stripe/user/subscription_controller.rb
phcdevworks_accounts_stripe-1.0.4 app/controllers/phcdevworks_accounts_stripe/user/subscription_controller.rb
phcdevworks_accounts_stripe-1.0.3 app/controllers/phcdevworks_accounts_stripe/user/subscription_controller.rb
phcdevworks_accounts_stripe-1.0.2 app/controllers/phcdevworks_accounts_stripe/user/subscription_controller.rb
phcdevworks_accounts_stripe-1.0.1 app/controllers/phcdevworks_accounts_stripe/user/subscription_controller.rb
phcdevworks_accounts_stripe-1.0.0 app/controllers/phcdevworks_accounts_stripe/user/subscription_controller.rb
phcdevworks_accounts_stripe-0.2.0 app/controllers/phcdevworks_accounts_stripe/user/subscription_controller.rb