├── .cli.json ├── .env.example ├── .github └── dependabot.yml ├── .gitignore ├── .vscode └── extensions.json ├── 2019-08-14-auto-confirm ├── README.md ├── client │ └── index.html ├── demo.gif └── server │ └── php │ ├── composer.json │ ├── composer.lock │ └── index.php ├── 2019-08-28-save-and-reuse-cards ├── README.md ├── client │ ├── step_1_save_card.html │ ├── step_2_charge_later.html │ └── step_3_complete.html ├── demo.gif ├── demo2.gif └── server │ └── php │ ├── composer.json │ ├── composer.lock │ └── index.php ├── 2019-10-02-billing ├── README.md ├── client │ ├── index.html │ └── pricing.html ├── demo.gif └── server │ └── php │ ├── composer.json │ ├── composer.lock │ └── index.php ├── 2019-10-16-webhooks ├── Gemfile ├── README.md ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── webhook_events_controller.rb │ ├── helpers │ │ └── application_helper.rb │ ├── jobs │ │ ├── application_job.rb │ │ └── process_events_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── webhook_event.rb │ ├── services │ │ └── events │ │ │ └── stripe_handler.rb │ └── views │ │ └── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ ├── spring │ ├── update │ └── yarn ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── content_security_policy.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── spring.rb │ └── storage.yml ├── db │ ├── migrate │ │ └── 20191011170425_create_webhook_events.rb │ ├── schema.rb │ └── seeds.rb ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep ├── package.json └── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── favicon.ico │ ├── index.html │ └── robots.txt ├── 2019-10-30-connect-onboarding ├── README.md ├── client │ ├── document.html │ ├── index.html │ └── person.html └── server │ └── node │ ├── package-lock.json │ ├── package.json │ └── server.js ├── 2019-11-21-checkout ├── README.md ├── client │ ├── cancel.html │ ├── index.html │ └── success.html ├── demo.gif └── server │ └── php │ ├── .env.example │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── store.db ├── 2019-12-04-ios ├── README.md ├── demo.gif └── ios │ ├── Podfile │ ├── one-time-payment.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ └── aliriaz.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── one-time-payment.xcworkspace │ └── contents.xcworkspacedata │ └── one-time-payment │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── stripe_press.imageset │ │ ├── Contents.json │ │ └── stripe_press.jpg │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Constants.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── 2019-12-24-issuing ├── Gemfile ├── README.md ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ └── stylesheets │ │ │ ├── application.css │ │ │ ├── cardholders.scss │ │ │ ├── cards.scss │ │ │ └── webhooks.scss │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ ├── cardholders_controller.rb │ │ ├── cards_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── webhooks_controller.rb │ ├── helpers │ │ ├── application_helper.rb │ │ ├── cardholders_helper.rb │ │ ├── cards_helper.rb │ │ └── webhooks_helper.rb │ ├── javascript │ │ ├── channels │ │ │ ├── consumer.js │ │ │ └── index.js │ │ └── packs │ │ │ └── application.js │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ └── concerns │ │ │ └── .keep │ └── views │ │ ├── cardholders │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ │ ├── cards │ │ └── show.html.erb │ │ └── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb ├── babel.config.js ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ ├── spring │ ├── webpack │ ├── webpack-dev-server │ └── yarn ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── credentials.yml.enc │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── content_security_policy.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── stripe.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── spring.rb │ ├── storage.yml │ ├── webpack │ │ ├── development.js │ │ ├── environment.js │ │ ├── production.js │ │ └── test.js │ └── webpacker.yml ├── db │ ├── development.sqlite3 │ └── seeds.rb ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep ├── package.json ├── postcss.config.js └── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── favicon.ico │ ├── packs │ ├── js │ │ ├── application-0b67a3cc2fcde6055024.js │ │ └── application-0b67a3cc2fcde6055024.js.map │ └── manifest.json │ └── robots.txt ├── 2020-01-28-variable-checkout ├── README.md ├── demo.gif ├── server.py └── templates │ ├── cancel.html │ ├── index.html │ └── success.html ├── 2020-02-13-ach ├── .env.example ├── README.md ├── client │ ├── index.html │ ├── manual.html │ └── verify.html ├── demo.gif └── server.go ├── 2020-02-26-react-stripe-js ├── README.md ├── components │ ├── CheckoutForm.jsx │ ├── Layout.jsx │ └── prebuilt │ │ ├── BillingDetailsFields.jsx │ │ ├── CheckoutError.jsx │ │ ├── DonutQuantity.jsx │ │ ├── DonutShop.jsx │ │ ├── FormField.jsx │ │ ├── GlobalStyles.jsx │ │ ├── Image.jsx │ │ ├── Row.jsx │ │ └── SubmitButton.jsx ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── api │ │ └── payment_intents.js │ ├── index.js │ └── success.js ├── public │ └── donut.png └── utils │ └── get-donut-price.js ├── 2020-04-01-klarna ├── Gemfile ├── Gemfile.lock ├── config.ru ├── klarna.rb └── views │ ├── products.erb │ └── success.erb ├── 2020-04-02-pausing-subscriptions ├── LICENSE ├── README.md ├── client │ ├── index.erb │ └── subscription.erb ├── demo.gif └── server │ ├── Gemfile │ ├── README.md │ └── server.rb ├── 2020-04-06-subscription-installments ├── LICENSE ├── README.md ├── client │ ├── bike.png │ ├── index.html │ └── store.js └── server │ ├── README.md │ ├── package-lock.json │ ├── package.json │ └── server.js ├── 2020-04-08-batch-processing ├── .env.example ├── README.md ├── batch-cli.sh ├── batch.js └── package.json ├── 2020-04-13-coupons-and-subscriptions ├── LICENSE ├── README.md ├── client │ ├── index.erb │ ├── styles.css │ └── subscription.erb ├── demo.gif └── server │ ├── Gemfile │ └── server.rb ├── 2020-04-15-klarna-pay-installments ├── LICENSE ├── README.md ├── client │ ├── index.html │ ├── payment_method_categories.erb │ ├── products.erb │ └── success.erb ├── klarna │ ├── .cli.json │ ├── .env.example │ └── .gitignore └── server │ ├── Gemfile │ ├── README.md │ └── server.rb ├── 2020-04-17-lumpy-subscription-payments ├── LICENSE ├── README.md ├── client │ ├── index.html │ └── subscription.html └── server │ ├── README.md │ ├── __pycache__ │ └── server.cpython-37.pyc │ ├── requirements.txt │ └── server.py ├── 2020-04-23-disputes ├── LICENSE ├── README.md ├── client │ ├── canceled.html │ ├── css │ │ ├── global.css │ │ └── normalize.css │ ├── dispute.ejs │ ├── favicon.ico │ ├── index.html │ ├── locales │ │ ├── de.json │ │ ├── en.json │ │ ├── fr.json │ │ ├── ja.json │ │ ├── ms.json │ │ └── nl.json │ ├── script.js │ ├── success.html │ ├── terms.html │ └── translation.js ├── gov.pdf ├── server │ ├── README.md │ ├── package-lock.json │ ├── package.json │ └── server.js └── terms.pdf ├── 2020-05-01-refunds ├── .cli.json ├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── client │ ├── customer.html │ └── index.html ├── data.json └── server │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ └── server.rb ├── 2020-05-07-checkout-wine-shipment ├── LICENSE ├── README.md ├── public │ ├── css │ │ ├── normalize.css │ │ └── styles.css │ └── images │ │ ├── red-wine.jpg │ │ ├── white-wine.jpg │ │ └── wine-grab-bag.jpg └── server │ ├── README.md │ ├── example.env │ ├── package-lock.json │ ├── package.json │ ├── products.js │ ├── server.js │ └── views │ ├── index.ejs │ └── success.ejs ├── 2020-06-22-sepa-direct-debit ├── .cli.json ├── .gitignore ├── LICENSE ├── README.md ├── client │ ├── index.erb │ ├── sepa.erb │ ├── sepa.js │ └── styles.css └── server │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ └── server.rb ├── 2020-06-29-customer-portal ├── Gemfile ├── README.md ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ └── stylesheets │ │ │ ├── application.css │ │ │ ├── customer_portal_sessions.scss │ │ │ ├── episodes.scss │ │ │ ├── sessions.scss │ │ │ ├── static_pages.scss │ │ │ ├── users.scss │ │ │ └── webhooks.scss │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ ├── customer_portal_sessions_controller.rb │ │ ├── episodes_controller.rb │ │ ├── sessions_controller.rb │ │ ├── static_pages_controller.rb │ │ ├── users_controller.rb │ │ └── webhooks_controller.rb │ ├── helpers │ │ ├── application_helper.rb │ │ ├── customer_portal_sessions_helper.rb │ │ ├── episodes_helper.rb │ │ ├── sessions_helper.rb │ │ ├── static_pages_helper.rb │ │ ├── users_helper.rb │ │ └── webhooks_helper.rb │ ├── javascript │ │ ├── channels │ │ │ ├── consumer.js │ │ │ └── index.js │ │ └── packs │ │ │ └── application.js │ ├── models │ │ ├── application_record.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── user.rb │ └── views │ │ ├── episodes │ │ └── index.html.erb │ │ ├── layouts │ │ ├── application.html.erb │ │ └── dashboard.html.erb │ │ ├── sessions │ │ └── new.html.erb │ │ ├── static_pages │ │ ├── pricing.html.erb │ │ └── root.html.erb │ │ └── users │ │ ├── checkout.html.erb │ │ └── new.html.erb ├── babel.config.js ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ ├── spring │ ├── webpack │ ├── webpack-dev-server │ └── yarn ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── credentials.yml.enc │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── content_security_policy.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── stripe.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── spring.rb │ ├── storage.yml │ ├── webpack │ │ ├── development.js │ │ ├── environment.js │ │ ├── production.js │ │ └── test.js │ └── webpacker.yml ├── customer_portal.png ├── customer_portal_settings.png ├── db │ ├── migrate │ │ ├── 20200423214328_create_users.rb │ │ └── 20200423220621_add_subscription_status_to_users.rb │ ├── schema.rb │ └── seeds.rb ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep ├── package.json ├── postcss.config.js └── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── avillatheory.png │ ├── favicon.ico │ ├── packs │ ├── js │ │ ├── application-bbe9c4a129ab949e0636.js │ │ └── application-bbe9c4a129ab949e0636.js.map │ └── manifest.json │ └── robots.txt ├── 2020-09-10-checkout-taxes-coupons ├── LICENSE ├── README.md ├── client │ ├── index.html │ └── success.html └── server │ ├── README.md │ ├── package-lock.json │ ├── package.json │ └── server.js ├── 2020-09-17-checkout-bacs-payment ├── LICENSE ├── README.md ├── client │ ├── index.erb │ ├── redirect.erb │ └── styles.css └── server │ ├── .env.example │ ├── Gemfile │ ├── README.md │ └── server.rb ├── 2020-09-23-checkout-sepa-payment ├── LICENSE ├── README.md ├── client │ ├── index.erb │ ├── redirect.erb │ └── styles.css └── server │ ├── .env.example │ ├── Gemfile │ ├── README.md │ └── server.rb ├── 2020-10-08-accept-a-payment ├── LICENSE ├── README.md ├── client │ └── index.html └── server │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ └── server.rb ├── 2020-10-30-client-libraries ├── dotnet │ ├── authentication │ │ ├── Program.cs │ │ ├── authentication.csproj │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── Stripe.net.dll │ │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ │ ├── System.Security.Permissions.dll │ │ │ │ ├── authentication.deps.json │ │ │ │ ├── authentication.dll │ │ │ │ ├── authentication.pdb │ │ │ │ ├── authentication.runtimeconfig.dev.json │ │ │ │ ├── authentication.runtimeconfig.json │ │ │ │ └── runtimes │ │ │ │ └── win │ │ │ │ └── lib │ │ │ │ └── netstandard2.0 │ │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── authentication.AssemblyInfo.cs │ │ │ │ ├── authentication.AssemblyInfoInputs.cache │ │ │ │ ├── authentication.assets.cache │ │ │ │ ├── authentication.csproj.CopyComplete │ │ │ │ ├── authentication.csproj.CoreCompileInputs.cache │ │ │ │ ├── authentication.csproj.FileListAbsolute.txt │ │ │ │ ├── authentication.csprojAssemblyReference.cache │ │ │ │ ├── authentication.dll │ │ │ │ ├── authentication.genruntimeconfig.cache │ │ │ │ └── authentication.pdb │ │ │ ├── authentication.csproj.nuget.dgspec.json │ │ │ ├── authentication.csproj.nuget.g.props │ │ │ ├── authentication.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── idempotency │ │ ├── .vs │ │ │ └── Idempotency │ │ │ │ └── xs │ │ │ │ ├── UserPrefs.xml │ │ │ │ └── project-cache │ │ │ │ └── Idempotency-Debug.json │ │ ├── Idempotency.sln │ │ └── Idempotency │ │ │ ├── Idempotency.csproj │ │ │ ├── Program.cs │ │ │ ├── mono_crash.11a6748113.0.json │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── Idempotency.assets.cache │ │ │ │ └── Idempotency.csproj.FileListAbsolute.txt │ │ │ ├── Idempotency.csproj.nuget.dgspec.json │ │ │ ├── Idempotency.csproj.nuget.g.props │ │ │ ├── Idempotency.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── metadata │ │ ├── Program.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── Stripe.net.dll │ │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ │ ├── System.Drawing.Common.dll │ │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ │ ├── System.Security.Permissions.dll │ │ │ │ ├── System.Windows.Extensions.dll │ │ │ │ ├── metadata.deps.json │ │ │ │ ├── metadata.dll │ │ │ │ ├── metadata.pdb │ │ │ │ ├── metadata.runtimeconfig.dev.json │ │ │ │ ├── metadata.runtimeconfig.json │ │ │ │ ├── ref │ │ │ │ └── metadata.dll │ │ │ │ └── runtimes │ │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ └── netcoreapp3.0 │ │ │ │ │ └── System.Drawing.Common.dll │ │ │ │ └── win │ │ │ │ └── lib │ │ │ │ ├── netcoreapp3.0 │ │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ │ ├── System.Drawing.Common.dll │ │ │ │ └── System.Windows.Extensions.dll │ │ │ │ └── netstandard2.0 │ │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ ├── metadata.csproj │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── metadata.AssemblyInfo.cs │ │ │ │ ├── metadata.AssemblyInfoInputs.cache │ │ │ │ ├── metadata.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── metadata.assets.cache │ │ │ │ ├── metadata.csproj.CopyComplete │ │ │ │ ├── metadata.csproj.CoreCompileInputs.cache │ │ │ │ ├── metadata.csproj.FileListAbsolute.txt │ │ │ │ ├── metadata.csprojAssemblyReference.cache │ │ │ │ ├── metadata.dll │ │ │ │ ├── metadata.genruntimeconfig.cache │ │ │ │ ├── metadata.pdb │ │ │ │ └── ref │ │ │ │ └── metadata.dll │ │ │ ├── metadata.csproj.nuget.dgspec.json │ │ │ ├── metadata.csproj.nuget.g.props │ │ │ ├── metadata.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── pagination │ │ ├── Program.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── Stripe.net.dll │ │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ │ ├── System.Security.Permissions.dll │ │ │ │ ├── pagination.deps.json │ │ │ │ ├── pagination.dll │ │ │ │ ├── pagination.pdb │ │ │ │ ├── pagination.runtimeconfig.dev.json │ │ │ │ ├── pagination.runtimeconfig.json │ │ │ │ └── runtimes │ │ │ │ └── win │ │ │ │ └── lib │ │ │ │ └── netstandard2.0 │ │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ ├── obj │ │ │ ├── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ │ ├── pagination.AssemblyInfo.cs │ │ │ │ │ ├── pagination.AssemblyInfoInputs.cache │ │ │ │ │ ├── pagination.assets.cache │ │ │ │ │ ├── pagination.csproj.CopyComplete │ │ │ │ │ ├── pagination.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── pagination.csproj.FileListAbsolute.txt │ │ │ │ │ ├── pagination.csprojAssemblyReference.cache │ │ │ │ │ ├── pagination.dll │ │ │ │ │ ├── pagination.genruntimeconfig.cache │ │ │ │ │ └── pagination.pdb │ │ │ ├── pagination.csproj.nuget.dgspec.json │ │ │ ├── pagination.csproj.nuget.g.props │ │ │ ├── pagination.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ │ └── pagination.csproj │ ├── requests │ │ ├── Program.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── Stripe.net.dll │ │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ │ ├── System.Security.Permissions.dll │ │ │ │ ├── requests.deps.json │ │ │ │ ├── requests.dll │ │ │ │ ├── requests.pdb │ │ │ │ ├── requests.runtimeconfig.dev.json │ │ │ │ ├── requests.runtimeconfig.json │ │ │ │ └── runtimes │ │ │ │ └── win │ │ │ │ └── lib │ │ │ │ └── netstandard2.0 │ │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ ├── obj │ │ │ ├── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ │ ├── requests.AssemblyInfo.cs │ │ │ │ │ ├── requests.AssemblyInfoInputs.cache │ │ │ │ │ ├── requests.assets.cache │ │ │ │ │ ├── requests.csproj.CopyComplete │ │ │ │ │ ├── requests.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── requests.csproj.FileListAbsolute.txt │ │ │ │ │ ├── requests.csprojAssemblyReference.cache │ │ │ │ │ ├── requests.dll │ │ │ │ │ ├── requests.genruntimeconfig.cache │ │ │ │ │ └── requests.pdb │ │ │ ├── project.assets.json │ │ │ ├── project.nuget.cache │ │ │ ├── requests.csproj.nuget.dgspec.json │ │ │ ├── requests.csproj.nuget.g.props │ │ │ └── requests.csproj.nuget.g.targets │ │ └── requests.csproj │ ├── versioning │ │ ├── Program.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── Stripe.net.dll │ │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ │ ├── System.Security.Permissions.dll │ │ │ │ ├── runtimes │ │ │ │ └── win │ │ │ │ │ └── lib │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ │ │ ├── versioning.deps.json │ │ │ │ ├── versioning.dll │ │ │ │ ├── versioning.pdb │ │ │ │ ├── versioning.runtimeconfig.dev.json │ │ │ │ └── versioning.runtimeconfig.json │ │ ├── obj │ │ │ ├── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ ├── versioning.AssemblyInfo.cs │ │ │ │ │ ├── versioning.AssemblyInfoInputs.cache │ │ │ │ │ ├── versioning.assets.cache │ │ │ │ │ ├── versioning.csproj.CopyComplete │ │ │ │ │ ├── versioning.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── versioning.csproj.FileListAbsolute.txt │ │ │ │ │ ├── versioning.csprojAssemblyReference.cache │ │ │ │ │ ├── versioning.dll │ │ │ │ │ ├── versioning.genruntimeconfig.cache │ │ │ │ │ └── versioning.pdb │ │ │ ├── project.assets.json │ │ │ ├── project.nuget.cache │ │ │ ├── versioning.csproj.nuget.dgspec.json │ │ │ ├── versioning.csproj.nuget.g.props │ │ │ └── versioning.csproj.nuget.g.targets │ │ └── versioning.csproj │ └── webhooks │ │ ├── Configuration │ │ └── StripeOptions.cs │ │ ├── Controllers │ │ └── PaymentsController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── README.md │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── server.csproj │ │ └── server.sln ├── go │ ├── authentication.go │ ├── demo_requests.go │ ├── idempotency │ │ ├── create_customer.go │ │ ├── create_uuid.go │ │ ├── go.mod │ │ ├── go.sum │ │ └── max_network_retries.go │ ├── metadata.go │ ├── pagination.go │ ├── versioning.go │ └── webhooks │ │ ├── README.md │ │ ├── go.mod │ │ ├── go.sum │ │ └── server.go ├── java │ ├── Authentication.java │ ├── DemoRequest.java │ ├── Metadata.java │ ├── Pagination.java │ ├── Versioning.java │ ├── build_java.sh │ ├── gson-2.8.5.jar │ ├── idempotency │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── stripe │ │ │ └── app │ │ │ ├── CreateCustomer.java │ │ │ ├── CreateUuid.java │ │ │ └── MaxNetworkRetries.java │ ├── stripe-java-20.14.0.jar │ └── webhooks │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── stripe │ │ └── sample │ │ └── Server.java ├── node │ ├── authentication.js │ ├── demo_requests.js │ ├── idempotency │ │ ├── create_customer.js │ │ ├── create_uuid.js │ │ ├── max_network_retries.js │ │ └── package.json │ ├── metadata.js │ ├── pagination.js │ ├── versioning.js │ └── webhooks │ │ ├── README.md │ │ ├── package.json │ │ └── server.js ├── php │ ├── authentication.php │ ├── composer.json │ ├── composer.lock │ ├── demo_requests.php │ ├── idempotency │ │ ├── composer.json │ │ ├── create_customer.php │ │ ├── create_uuid.php │ │ └── max_network_retries.php │ ├── metadata.php │ ├── pagination.php │ ├── versioning.php │ └── webhooks │ │ ├── README.md │ │ └── index.php ├── python │ ├── authentication.py │ ├── demo_requests.py │ ├── idempotency │ │ ├── create_customer.py │ │ ├── create_uuid.py │ │ └── max_network_retries.py │ ├── metadata.py │ ├── pagination.py │ ├── versioning.py │ └── webhooks │ │ ├── README.md │ │ └── server.py └── ruby │ ├── authentication.rb │ ├── demo_requests.rb │ ├── idempotency │ ├── Gemfile │ ├── create_customer.rb │ ├── create_uuid.rb │ └── max_network_retries.rb │ ├── metadata.rb │ ├── pagination.rb │ ├── versioning.rb │ └── webhooks │ ├── Gemfile │ ├── README.md │ └── server.rb ├── 2020-12-15-clone-payment-method ├── LICENSE ├── README.md ├── client │ └── index.html ├── clone-payment-method.gif └── server │ ├── .env.example │ ├── README.md │ ├── requirements.txt │ └── server.py ├── 2021-06-15-identity ├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── client │ └── index.html └── server │ ├── README.md │ ├── package-lock.json │ ├── package.json │ └── server.js ├── README.md ├── assets └── developer-office-hours.png ├── docs ├── _config.yml ├── accept-a-payment.css ├── demo.css ├── index.html ├── logo.svg └── pins.png └── starter ├── LICENSE ├── README.md ├── client ├── html │ └── index.html └── react-cra │ ├── package.json │ ├── public │ └── index.html │ ├── src │ ├── App.js │ ├── PaymentForm.js │ └── index.js │ └── yarn.lock └── server ├── README.md ├── dotnet ├── Configuration │ └── StripeOptions.cs ├── Controllers │ └── PaymentsController.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── DotNetEnv.dll │ │ ├── Microsoft.AspNetCore.JsonPatch.dll │ │ ├── Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Stripe.net.dll │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── runtimes │ │ └── win │ │ │ └── lib │ │ │ └── netstandard2.0 │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ ├── server.deps.json │ │ ├── server.dll │ │ ├── server.pdb │ │ ├── server.runtimeconfig.dev.json │ │ └── server.runtimeconfig.json ├── obj │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── server.AssemblyInfo.cs │ │ │ ├── server.AssemblyInfoInputs.cache │ │ │ ├── server.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── server.RazorTargetAssemblyInfo.cache │ │ │ ├── server.assets.cache │ │ │ ├── server.csproj.CopyComplete │ │ │ ├── server.csproj.CoreCompileInputs.cache │ │ │ ├── server.csproj.FileListAbsolute.txt │ │ │ ├── server.csprojAssemblyReference.cache │ │ │ ├── server.dll │ │ │ ├── server.genruntimeconfig.cache │ │ │ ├── server.pdb │ │ │ └── staticwebassets │ │ │ ├── server.StaticWebAssets.Manifest.cache │ │ │ └── server.StaticWebAssets.xml │ ├── project.assets.json │ ├── project.nuget.cache │ ├── server.csproj.nuget.cache │ ├── server.csproj.nuget.dgspec.json │ ├── server.csproj.nuget.g.props │ └── server.csproj.nuget.g.targets ├── server.csproj └── server.sln ├── go-echo ├── README.md └── server.go ├── go-http ├── go.mod ├── go.sum └── server.go ├── java ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── stripe │ └── sample │ └── Server.java ├── node ├── README.md ├── package.json └── server.js ├── php-slim ├── .htaccess ├── README.md ├── composer.json ├── composer.lock └── index.php ├── php ├── composer.json ├── composer.lock └── public │ ├── index.php │ ├── shared.php │ └── webhook.php ├── python ├── README.md ├── requirements.txt └── server.py └── ruby ├── Gemfile ├── README.md └── server.rb /.cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/.cli.json -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/.env.example -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /2019-08-14-auto-confirm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-14-auto-confirm/README.md -------------------------------------------------------------------------------- /2019-08-14-auto-confirm/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-14-auto-confirm/client/index.html -------------------------------------------------------------------------------- /2019-08-14-auto-confirm/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-14-auto-confirm/demo.gif -------------------------------------------------------------------------------- /2019-08-14-auto-confirm/server/php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-14-auto-confirm/server/php/composer.json -------------------------------------------------------------------------------- /2019-08-14-auto-confirm/server/php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-14-auto-confirm/server/php/composer.lock -------------------------------------------------------------------------------- /2019-08-14-auto-confirm/server/php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-14-auto-confirm/server/php/index.php -------------------------------------------------------------------------------- /2019-08-28-save-and-reuse-cards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-28-save-and-reuse-cards/README.md -------------------------------------------------------------------------------- /2019-08-28-save-and-reuse-cards/client/step_1_save_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-28-save-and-reuse-cards/client/step_1_save_card.html -------------------------------------------------------------------------------- /2019-08-28-save-and-reuse-cards/client/step_2_charge_later.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-28-save-and-reuse-cards/client/step_2_charge_later.html -------------------------------------------------------------------------------- /2019-08-28-save-and-reuse-cards/client/step_3_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-28-save-and-reuse-cards/client/step_3_complete.html -------------------------------------------------------------------------------- /2019-08-28-save-and-reuse-cards/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-28-save-and-reuse-cards/demo.gif -------------------------------------------------------------------------------- /2019-08-28-save-and-reuse-cards/demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-28-save-and-reuse-cards/demo2.gif -------------------------------------------------------------------------------- /2019-08-28-save-and-reuse-cards/server/php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-28-save-and-reuse-cards/server/php/composer.json -------------------------------------------------------------------------------- /2019-08-28-save-and-reuse-cards/server/php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-28-save-and-reuse-cards/server/php/composer.lock -------------------------------------------------------------------------------- /2019-08-28-save-and-reuse-cards/server/php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-08-28-save-and-reuse-cards/server/php/index.php -------------------------------------------------------------------------------- /2019-10-02-billing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-02-billing/README.md -------------------------------------------------------------------------------- /2019-10-02-billing/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-02-billing/client/index.html -------------------------------------------------------------------------------- /2019-10-02-billing/client/pricing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-02-billing/client/pricing.html -------------------------------------------------------------------------------- /2019-10-02-billing/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-02-billing/demo.gif -------------------------------------------------------------------------------- /2019-10-02-billing/server/php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-02-billing/server/php/composer.json -------------------------------------------------------------------------------- /2019-10-02-billing/server/php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-02-billing/server/php/composer.lock -------------------------------------------------------------------------------- /2019-10-02-billing/server/php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-02-billing/server/php/index.php -------------------------------------------------------------------------------- /2019-10-16-webhooks/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/Gemfile -------------------------------------------------------------------------------- /2019-10-16-webhooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/README.md -------------------------------------------------------------------------------- /2019-10-16-webhooks/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/Rakefile -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/app/assets/config/manifest.js -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/controllers/webhook_events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/app/controllers/webhook_events_controller.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/jobs/process_events_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/app/jobs/process_events_job.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/app/models/application_record.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/models/webhook_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/app/models/webhook_event.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/services/events/stripe_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/app/services/events/stripe_handler.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /2019-10-16-webhooks/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /2019-10-16-webhooks/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/bin/bundle -------------------------------------------------------------------------------- /2019-10-16-webhooks/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/bin/rails -------------------------------------------------------------------------------- /2019-10-16-webhooks/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/bin/rake -------------------------------------------------------------------------------- /2019-10-16-webhooks/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/bin/setup -------------------------------------------------------------------------------- /2019-10-16-webhooks/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/bin/spring -------------------------------------------------------------------------------- /2019-10-16-webhooks/bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/bin/update -------------------------------------------------------------------------------- /2019-10-16-webhooks/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/bin/yarn -------------------------------------------------------------------------------- /2019-10-16-webhooks/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config.ru -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/application.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/boot.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/cable.yml -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/database.yml -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/environment.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/environments/development.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/environments/production.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/environments/test.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/initializers/assets.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/initializers/inflections.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/locales/en.yml -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/puma.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/routes.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/spring.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/config/storage.yml -------------------------------------------------------------------------------- /2019-10-16-webhooks/db/migrate/20191011170425_create_webhook_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/db/migrate/20191011170425_create_webhook_events.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/db/schema.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/db/seeds.rb -------------------------------------------------------------------------------- /2019-10-16-webhooks/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-10-16-webhooks/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-10-16-webhooks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/package.json -------------------------------------------------------------------------------- /2019-10-16-webhooks/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/public/404.html -------------------------------------------------------------------------------- /2019-10-16-webhooks/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/public/422.html -------------------------------------------------------------------------------- /2019-10-16-webhooks/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/public/500.html -------------------------------------------------------------------------------- /2019-10-16-webhooks/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-10-16-webhooks/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-10-16-webhooks/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-10-16-webhooks/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/public/index.html -------------------------------------------------------------------------------- /2019-10-16-webhooks/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-16-webhooks/public/robots.txt -------------------------------------------------------------------------------- /2019-10-30-connect-onboarding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-30-connect-onboarding/README.md -------------------------------------------------------------------------------- /2019-10-30-connect-onboarding/client/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-30-connect-onboarding/client/document.html -------------------------------------------------------------------------------- /2019-10-30-connect-onboarding/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-30-connect-onboarding/client/index.html -------------------------------------------------------------------------------- /2019-10-30-connect-onboarding/client/person.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-30-connect-onboarding/client/person.html -------------------------------------------------------------------------------- /2019-10-30-connect-onboarding/server/node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-30-connect-onboarding/server/node/package-lock.json -------------------------------------------------------------------------------- /2019-10-30-connect-onboarding/server/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-30-connect-onboarding/server/node/package.json -------------------------------------------------------------------------------- /2019-10-30-connect-onboarding/server/node/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-10-30-connect-onboarding/server/node/server.js -------------------------------------------------------------------------------- /2019-11-21-checkout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-11-21-checkout/README.md -------------------------------------------------------------------------------- /2019-11-21-checkout/client/cancel.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-11-21-checkout/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-11-21-checkout/client/index.html -------------------------------------------------------------------------------- /2019-11-21-checkout/client/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-11-21-checkout/client/success.html -------------------------------------------------------------------------------- /2019-11-21-checkout/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-11-21-checkout/demo.gif -------------------------------------------------------------------------------- /2019-11-21-checkout/server/php/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-11-21-checkout/server/php/.env.example -------------------------------------------------------------------------------- /2019-11-21-checkout/server/php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-11-21-checkout/server/php/composer.json -------------------------------------------------------------------------------- /2019-11-21-checkout/server/php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-11-21-checkout/server/php/composer.lock -------------------------------------------------------------------------------- /2019-11-21-checkout/server/php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-11-21-checkout/server/php/index.php -------------------------------------------------------------------------------- /2019-11-21-checkout/server/php/store.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-11-21-checkout/server/php/store.db -------------------------------------------------------------------------------- /2019-12-04-ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-04-ios/README.md -------------------------------------------------------------------------------- /2019-12-04-ios/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-04-ios/demo.gif -------------------------------------------------------------------------------- /2019-12-04-ios/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-04-ios/ios/Podfile -------------------------------------------------------------------------------- /2019-12-04-ios/ios/one-time-payment.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-04-ios/ios/one-time-payment.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /2019-12-04-ios/ios/one-time-payment.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-04-ios/ios/one-time-payment.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /2019-12-04-ios/ios/one-time-payment/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-04-ios/ios/one-time-payment/AppDelegate.swift -------------------------------------------------------------------------------- /2019-12-04-ios/ios/one-time-payment/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-04-ios/ios/one-time-payment/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /2019-12-04-ios/ios/one-time-payment/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-04-ios/ios/one-time-payment/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /2019-12-04-ios/ios/one-time-payment/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-04-ios/ios/one-time-payment/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /2019-12-04-ios/ios/one-time-payment/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-04-ios/ios/one-time-payment/Constants.swift -------------------------------------------------------------------------------- /2019-12-04-ios/ios/one-time-payment/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-04-ios/ios/one-time-payment/Info.plist -------------------------------------------------------------------------------- /2019-12-04-ios/ios/one-time-payment/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-04-ios/ios/one-time-payment/SceneDelegate.swift -------------------------------------------------------------------------------- /2019-12-04-ios/ios/one-time-payment/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-04-ios/ios/one-time-payment/ViewController.swift -------------------------------------------------------------------------------- /2019-12-24-issuing/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/Gemfile -------------------------------------------------------------------------------- /2019-12-24-issuing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/README.md -------------------------------------------------------------------------------- /2019-12-24-issuing/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/Rakefile -------------------------------------------------------------------------------- /2019-12-24-issuing/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/assets/config/manifest.js -------------------------------------------------------------------------------- /2019-12-24-issuing/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-12-24-issuing/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /2019-12-24-issuing/app/assets/stylesheets/cardholders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/assets/stylesheets/cardholders.scss -------------------------------------------------------------------------------- /2019-12-24-issuing/app/assets/stylesheets/cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/assets/stylesheets/cards.scss -------------------------------------------------------------------------------- /2019-12-24-issuing/app/assets/stylesheets/webhooks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/assets/stylesheets/webhooks.scss -------------------------------------------------------------------------------- /2019-12-24-issuing/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/controllers/cardholders_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/controllers/cardholders_controller.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/controllers/cards_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/controllers/cards_controller.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-12-24-issuing/app/controllers/webhooks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/controllers/webhooks_controller.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /2019-12-24-issuing/app/helpers/cardholders_helper.rb: -------------------------------------------------------------------------------- 1 | module CardholdersHelper 2 | end 3 | -------------------------------------------------------------------------------- /2019-12-24-issuing/app/helpers/cards_helper.rb: -------------------------------------------------------------------------------- 1 | module CardsHelper 2 | end 3 | -------------------------------------------------------------------------------- /2019-12-24-issuing/app/helpers/webhooks_helper.rb: -------------------------------------------------------------------------------- 1 | module WebhooksHelper 2 | end 3 | -------------------------------------------------------------------------------- /2019-12-24-issuing/app/javascript/channels/consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/javascript/channels/consumer.js -------------------------------------------------------------------------------- /2019-12-24-issuing/app/javascript/channels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/javascript/channels/index.js -------------------------------------------------------------------------------- /2019-12-24-issuing/app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/javascript/packs/application.js -------------------------------------------------------------------------------- /2019-12-24-issuing/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/jobs/application_job.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/models/application_record.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-12-24-issuing/app/views/cardholders/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/views/cardholders/index.html.erb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/views/cardholders/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/views/cardholders/new.html.erb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/views/cardholders/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/views/cardholders/show.html.erb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/views/cards/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/views/cards/show.html.erb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /2019-12-24-issuing/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /2019-12-24-issuing/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/babel.config.js -------------------------------------------------------------------------------- /2019-12-24-issuing/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/bin/bundle -------------------------------------------------------------------------------- /2019-12-24-issuing/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/bin/rails -------------------------------------------------------------------------------- /2019-12-24-issuing/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/bin/rake -------------------------------------------------------------------------------- /2019-12-24-issuing/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/bin/setup -------------------------------------------------------------------------------- /2019-12-24-issuing/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/bin/spring -------------------------------------------------------------------------------- /2019-12-24-issuing/bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/bin/webpack -------------------------------------------------------------------------------- /2019-12-24-issuing/bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/bin/webpack-dev-server -------------------------------------------------------------------------------- /2019-12-24-issuing/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/bin/yarn -------------------------------------------------------------------------------- /2019-12-24-issuing/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config.ru -------------------------------------------------------------------------------- /2019-12-24-issuing/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/application.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/boot.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/cable.yml -------------------------------------------------------------------------------- /2019-12-24-issuing/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/credentials.yml.enc -------------------------------------------------------------------------------- /2019-12-24-issuing/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/database.yml -------------------------------------------------------------------------------- /2019-12-24-issuing/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/environment.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/environments/development.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/environments/production.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/environments/test.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/initializers/assets.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/initializers/inflections.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/initializers/stripe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/initializers/stripe.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/locales/en.yml -------------------------------------------------------------------------------- /2019-12-24-issuing/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/puma.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/routes.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/spring.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/storage.yml -------------------------------------------------------------------------------- /2019-12-24-issuing/config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/webpack/development.js -------------------------------------------------------------------------------- /2019-12-24-issuing/config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/webpack/environment.js -------------------------------------------------------------------------------- /2019-12-24-issuing/config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/webpack/production.js -------------------------------------------------------------------------------- /2019-12-24-issuing/config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/webpack/test.js -------------------------------------------------------------------------------- /2019-12-24-issuing/config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/config/webpacker.yml -------------------------------------------------------------------------------- /2019-12-24-issuing/db/development.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-12-24-issuing/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/db/seeds.rb -------------------------------------------------------------------------------- /2019-12-24-issuing/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-12-24-issuing/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-12-24-issuing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/package.json -------------------------------------------------------------------------------- /2019-12-24-issuing/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/postcss.config.js -------------------------------------------------------------------------------- /2019-12-24-issuing/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/public/404.html -------------------------------------------------------------------------------- /2019-12-24-issuing/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/public/422.html -------------------------------------------------------------------------------- /2019-12-24-issuing/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/public/500.html -------------------------------------------------------------------------------- /2019-12-24-issuing/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-12-24-issuing/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-12-24-issuing/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2019-12-24-issuing/public/packs/js/application-0b67a3cc2fcde6055024.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/public/packs/js/application-0b67a3cc2fcde6055024.js -------------------------------------------------------------------------------- /2019-12-24-issuing/public/packs/js/application-0b67a3cc2fcde6055024.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/public/packs/js/application-0b67a3cc2fcde6055024.js.map -------------------------------------------------------------------------------- /2019-12-24-issuing/public/packs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/public/packs/manifest.json -------------------------------------------------------------------------------- /2019-12-24-issuing/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2019-12-24-issuing/public/robots.txt -------------------------------------------------------------------------------- /2020-01-28-variable-checkout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-01-28-variable-checkout/README.md -------------------------------------------------------------------------------- /2020-01-28-variable-checkout/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-01-28-variable-checkout/demo.gif -------------------------------------------------------------------------------- /2020-01-28-variable-checkout/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-01-28-variable-checkout/server.py -------------------------------------------------------------------------------- /2020-01-28-variable-checkout/templates/cancel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-01-28-variable-checkout/templates/cancel.html -------------------------------------------------------------------------------- /2020-01-28-variable-checkout/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-01-28-variable-checkout/templates/index.html -------------------------------------------------------------------------------- /2020-01-28-variable-checkout/templates/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-01-28-variable-checkout/templates/success.html -------------------------------------------------------------------------------- /2020-02-13-ach/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-13-ach/.env.example -------------------------------------------------------------------------------- /2020-02-13-ach/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-13-ach/README.md -------------------------------------------------------------------------------- /2020-02-13-ach/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-13-ach/client/index.html -------------------------------------------------------------------------------- /2020-02-13-ach/client/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-13-ach/client/manual.html -------------------------------------------------------------------------------- /2020-02-13-ach/client/verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-13-ach/client/verify.html -------------------------------------------------------------------------------- /2020-02-13-ach/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-13-ach/demo.gif -------------------------------------------------------------------------------- /2020-02-13-ach/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-13-ach/server.go -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/README.md -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/components/CheckoutForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/components/CheckoutForm.jsx -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/components/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/components/Layout.jsx -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/components/prebuilt/BillingDetailsFields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/components/prebuilt/BillingDetailsFields.jsx -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/components/prebuilt/CheckoutError.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/components/prebuilt/CheckoutError.jsx -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/components/prebuilt/DonutQuantity.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/components/prebuilt/DonutQuantity.jsx -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/components/prebuilt/DonutShop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/components/prebuilt/DonutShop.jsx -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/components/prebuilt/FormField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/components/prebuilt/FormField.jsx -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/components/prebuilt/GlobalStyles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/components/prebuilt/GlobalStyles.jsx -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/components/prebuilt/Image.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/components/prebuilt/Image.jsx -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/components/prebuilt/Row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/components/prebuilt/Row.jsx -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/components/prebuilt/SubmitButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/components/prebuilt/SubmitButton.jsx -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/next.config.js -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/package-lock.json -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/package.json -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/pages/api/payment_intents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/pages/api/payment_intents.js -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/pages/index.js -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/pages/success.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/pages/success.js -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/public/donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/public/donut.png -------------------------------------------------------------------------------- /2020-02-26-react-stripe-js/utils/get-donut-price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-02-26-react-stripe-js/utils/get-donut-price.js -------------------------------------------------------------------------------- /2020-04-01-klarna/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-01-klarna/Gemfile -------------------------------------------------------------------------------- /2020-04-01-klarna/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-01-klarna/Gemfile.lock -------------------------------------------------------------------------------- /2020-04-01-klarna/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-01-klarna/config.ru -------------------------------------------------------------------------------- /2020-04-01-klarna/klarna.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-01-klarna/klarna.rb -------------------------------------------------------------------------------- /2020-04-01-klarna/views/products.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-01-klarna/views/products.erb -------------------------------------------------------------------------------- /2020-04-01-klarna/views/success.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-01-klarna/views/success.erb -------------------------------------------------------------------------------- /2020-04-02-pausing-subscriptions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-02-pausing-subscriptions/LICENSE -------------------------------------------------------------------------------- /2020-04-02-pausing-subscriptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-02-pausing-subscriptions/README.md -------------------------------------------------------------------------------- /2020-04-02-pausing-subscriptions/client/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-02-pausing-subscriptions/client/index.erb -------------------------------------------------------------------------------- /2020-04-02-pausing-subscriptions/client/subscription.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-02-pausing-subscriptions/client/subscription.erb -------------------------------------------------------------------------------- /2020-04-02-pausing-subscriptions/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-02-pausing-subscriptions/demo.gif -------------------------------------------------------------------------------- /2020-04-02-pausing-subscriptions/server/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-02-pausing-subscriptions/server/Gemfile -------------------------------------------------------------------------------- /2020-04-02-pausing-subscriptions/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-02-pausing-subscriptions/server/README.md -------------------------------------------------------------------------------- /2020-04-02-pausing-subscriptions/server/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-02-pausing-subscriptions/server/server.rb -------------------------------------------------------------------------------- /2020-04-06-subscription-installments/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-06-subscription-installments/LICENSE -------------------------------------------------------------------------------- /2020-04-06-subscription-installments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-06-subscription-installments/README.md -------------------------------------------------------------------------------- /2020-04-06-subscription-installments/client/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-06-subscription-installments/client/bike.png -------------------------------------------------------------------------------- /2020-04-06-subscription-installments/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-06-subscription-installments/client/index.html -------------------------------------------------------------------------------- /2020-04-06-subscription-installments/client/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-06-subscription-installments/client/store.js -------------------------------------------------------------------------------- /2020-04-06-subscription-installments/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-06-subscription-installments/server/README.md -------------------------------------------------------------------------------- /2020-04-06-subscription-installments/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-06-subscription-installments/server/package-lock.json -------------------------------------------------------------------------------- /2020-04-06-subscription-installments/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-06-subscription-installments/server/package.json -------------------------------------------------------------------------------- /2020-04-06-subscription-installments/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-06-subscription-installments/server/server.js -------------------------------------------------------------------------------- /2020-04-08-batch-processing/.env.example: -------------------------------------------------------------------------------- 1 | STRIPE_SECRET_KEY= 2 | -------------------------------------------------------------------------------- /2020-04-08-batch-processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-08-batch-processing/README.md -------------------------------------------------------------------------------- /2020-04-08-batch-processing/batch-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-08-batch-processing/batch-cli.sh -------------------------------------------------------------------------------- /2020-04-08-batch-processing/batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-08-batch-processing/batch.js -------------------------------------------------------------------------------- /2020-04-08-batch-processing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-08-batch-processing/package.json -------------------------------------------------------------------------------- /2020-04-13-coupons-and-subscriptions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-13-coupons-and-subscriptions/LICENSE -------------------------------------------------------------------------------- /2020-04-13-coupons-and-subscriptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-13-coupons-and-subscriptions/README.md -------------------------------------------------------------------------------- /2020-04-13-coupons-and-subscriptions/client/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-13-coupons-and-subscriptions/client/index.erb -------------------------------------------------------------------------------- /2020-04-13-coupons-and-subscriptions/client/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-13-coupons-and-subscriptions/client/styles.css -------------------------------------------------------------------------------- /2020-04-13-coupons-and-subscriptions/client/subscription.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-13-coupons-and-subscriptions/client/subscription.erb -------------------------------------------------------------------------------- /2020-04-13-coupons-and-subscriptions/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-13-coupons-and-subscriptions/demo.gif -------------------------------------------------------------------------------- /2020-04-13-coupons-and-subscriptions/server/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-13-coupons-and-subscriptions/server/Gemfile -------------------------------------------------------------------------------- /2020-04-13-coupons-and-subscriptions/server/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-13-coupons-and-subscriptions/server/server.rb -------------------------------------------------------------------------------- /2020-04-15-klarna-pay-installments/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-15-klarna-pay-installments/LICENSE -------------------------------------------------------------------------------- /2020-04-15-klarna-pay-installments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-15-klarna-pay-installments/README.md -------------------------------------------------------------------------------- /2020-04-15-klarna-pay-installments/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-15-klarna-pay-installments/client/index.html -------------------------------------------------------------------------------- /2020-04-15-klarna-pay-installments/client/payment_method_categories.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-15-klarna-pay-installments/client/payment_method_categories.erb -------------------------------------------------------------------------------- /2020-04-15-klarna-pay-installments/client/products.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-15-klarna-pay-installments/client/products.erb -------------------------------------------------------------------------------- /2020-04-15-klarna-pay-installments/client/success.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-15-klarna-pay-installments/client/success.erb -------------------------------------------------------------------------------- /2020-04-15-klarna-pay-installments/klarna/.cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-15-klarna-pay-installments/klarna/.cli.json -------------------------------------------------------------------------------- /2020-04-15-klarna-pay-installments/klarna/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-15-klarna-pay-installments/klarna/.env.example -------------------------------------------------------------------------------- /2020-04-15-klarna-pay-installments/klarna/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-15-klarna-pay-installments/klarna/.gitignore -------------------------------------------------------------------------------- /2020-04-15-klarna-pay-installments/server/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-15-klarna-pay-installments/server/Gemfile -------------------------------------------------------------------------------- /2020-04-15-klarna-pay-installments/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-15-klarna-pay-installments/server/README.md -------------------------------------------------------------------------------- /2020-04-15-klarna-pay-installments/server/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-15-klarna-pay-installments/server/server.rb -------------------------------------------------------------------------------- /2020-04-17-lumpy-subscription-payments/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-17-lumpy-subscription-payments/LICENSE -------------------------------------------------------------------------------- /2020-04-17-lumpy-subscription-payments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-17-lumpy-subscription-payments/README.md -------------------------------------------------------------------------------- /2020-04-17-lumpy-subscription-payments/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-17-lumpy-subscription-payments/client/index.html -------------------------------------------------------------------------------- /2020-04-17-lumpy-subscription-payments/client/subscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-17-lumpy-subscription-payments/client/subscription.html -------------------------------------------------------------------------------- /2020-04-17-lumpy-subscription-payments/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-17-lumpy-subscription-payments/server/README.md -------------------------------------------------------------------------------- /2020-04-17-lumpy-subscription-payments/server/__pycache__/server.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-17-lumpy-subscription-payments/server/__pycache__/server.cpython-37.pyc -------------------------------------------------------------------------------- /2020-04-17-lumpy-subscription-payments/server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-17-lumpy-subscription-payments/server/requirements.txt -------------------------------------------------------------------------------- /2020-04-17-lumpy-subscription-payments/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-17-lumpy-subscription-payments/server/server.py -------------------------------------------------------------------------------- /2020-04-23-disputes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/LICENSE -------------------------------------------------------------------------------- /2020-04-23-disputes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/README.md -------------------------------------------------------------------------------- /2020-04-23-disputes/client/canceled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/canceled.html -------------------------------------------------------------------------------- /2020-04-23-disputes/client/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/css/global.css -------------------------------------------------------------------------------- /2020-04-23-disputes/client/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/css/normalize.css -------------------------------------------------------------------------------- /2020-04-23-disputes/client/dispute.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/dispute.ejs -------------------------------------------------------------------------------- /2020-04-23-disputes/client/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/favicon.ico -------------------------------------------------------------------------------- /2020-04-23-disputes/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/index.html -------------------------------------------------------------------------------- /2020-04-23-disputes/client/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/locales/de.json -------------------------------------------------------------------------------- /2020-04-23-disputes/client/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/locales/en.json -------------------------------------------------------------------------------- /2020-04-23-disputes/client/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/locales/fr.json -------------------------------------------------------------------------------- /2020-04-23-disputes/client/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/locales/ja.json -------------------------------------------------------------------------------- /2020-04-23-disputes/client/locales/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/locales/ms.json -------------------------------------------------------------------------------- /2020-04-23-disputes/client/locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/locales/nl.json -------------------------------------------------------------------------------- /2020-04-23-disputes/client/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/script.js -------------------------------------------------------------------------------- /2020-04-23-disputes/client/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/success.html -------------------------------------------------------------------------------- /2020-04-23-disputes/client/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/terms.html -------------------------------------------------------------------------------- /2020-04-23-disputes/client/translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/client/translation.js -------------------------------------------------------------------------------- /2020-04-23-disputes/gov.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/gov.pdf -------------------------------------------------------------------------------- /2020-04-23-disputes/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/server/README.md -------------------------------------------------------------------------------- /2020-04-23-disputes/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/server/package-lock.json -------------------------------------------------------------------------------- /2020-04-23-disputes/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/server/package.json -------------------------------------------------------------------------------- /2020-04-23-disputes/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/server/server.js -------------------------------------------------------------------------------- /2020-04-23-disputes/terms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-04-23-disputes/terms.pdf -------------------------------------------------------------------------------- /2020-05-01-refunds/.cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-01-refunds/.cli.json -------------------------------------------------------------------------------- /2020-05-01-refunds/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-01-refunds/.env.example -------------------------------------------------------------------------------- /2020-05-01-refunds/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-01-refunds/.gitignore -------------------------------------------------------------------------------- /2020-05-01-refunds/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-01-refunds/LICENSE -------------------------------------------------------------------------------- /2020-05-01-refunds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-01-refunds/README.md -------------------------------------------------------------------------------- /2020-05-01-refunds/client/customer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-01-refunds/client/customer.html -------------------------------------------------------------------------------- /2020-05-01-refunds/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-01-refunds/client/index.html -------------------------------------------------------------------------------- /2020-05-01-refunds/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-01-refunds/data.json -------------------------------------------------------------------------------- /2020-05-01-refunds/server/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-01-refunds/server/Gemfile -------------------------------------------------------------------------------- /2020-05-01-refunds/server/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-01-refunds/server/Gemfile.lock -------------------------------------------------------------------------------- /2020-05-01-refunds/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-01-refunds/server/README.md -------------------------------------------------------------------------------- /2020-05-01-refunds/server/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-01-refunds/server/server.rb -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/LICENSE -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/README.md -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/public/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/public/css/normalize.css -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/public/css/styles.css -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/public/images/red-wine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/public/images/red-wine.jpg -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/public/images/white-wine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/public/images/white-wine.jpg -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/public/images/wine-grab-bag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/public/images/wine-grab-bag.jpg -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/server/README.md -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/server/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/server/example.env -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/server/package-lock.json -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/server/package.json -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/server/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/server/products.js -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/server/server.js -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/server/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/server/views/index.ejs -------------------------------------------------------------------------------- /2020-05-07-checkout-wine-shipment/server/views/success.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-05-07-checkout-wine-shipment/server/views/success.ejs -------------------------------------------------------------------------------- /2020-06-22-sepa-direct-debit/.cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-22-sepa-direct-debit/.cli.json -------------------------------------------------------------------------------- /2020-06-22-sepa-direct-debit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-22-sepa-direct-debit/.gitignore -------------------------------------------------------------------------------- /2020-06-22-sepa-direct-debit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-22-sepa-direct-debit/LICENSE -------------------------------------------------------------------------------- /2020-06-22-sepa-direct-debit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-22-sepa-direct-debit/README.md -------------------------------------------------------------------------------- /2020-06-22-sepa-direct-debit/client/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-22-sepa-direct-debit/client/index.erb -------------------------------------------------------------------------------- /2020-06-22-sepa-direct-debit/client/sepa.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-22-sepa-direct-debit/client/sepa.erb -------------------------------------------------------------------------------- /2020-06-22-sepa-direct-debit/client/sepa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-22-sepa-direct-debit/client/sepa.js -------------------------------------------------------------------------------- /2020-06-22-sepa-direct-debit/client/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-22-sepa-direct-debit/client/styles.css -------------------------------------------------------------------------------- /2020-06-22-sepa-direct-debit/server/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-22-sepa-direct-debit/server/Gemfile -------------------------------------------------------------------------------- /2020-06-22-sepa-direct-debit/server/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-22-sepa-direct-debit/server/Gemfile.lock -------------------------------------------------------------------------------- /2020-06-22-sepa-direct-debit/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-22-sepa-direct-debit/server/README.md -------------------------------------------------------------------------------- /2020-06-22-sepa-direct-debit/server/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-22-sepa-direct-debit/server/server.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/Gemfile -------------------------------------------------------------------------------- /2020-06-29-customer-portal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/README.md -------------------------------------------------------------------------------- /2020-06-29-customer-portal/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/Rakefile -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/assets/config/manifest.js -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/assets/stylesheets/customer_portal_sessions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/assets/stylesheets/customer_portal_sessions.scss -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/assets/stylesheets/episodes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/assets/stylesheets/episodes.scss -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/assets/stylesheets/sessions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/assets/stylesheets/sessions.scss -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/assets/stylesheets/static_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/assets/stylesheets/static_pages.scss -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/assets/stylesheets/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/assets/stylesheets/users.scss -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/assets/stylesheets/webhooks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/assets/stylesheets/webhooks.scss -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/controllers/customer_portal_sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/controllers/customer_portal_sessions_controller.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/controllers/episodes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/controllers/episodes_controller.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/controllers/static_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/controllers/static_pages_controller.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/controllers/webhooks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/controllers/webhooks_controller.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/helpers/customer_portal_sessions_helper.rb: -------------------------------------------------------------------------------- 1 | module CustomerPortalSessionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/helpers/episodes_helper.rb: -------------------------------------------------------------------------------- 1 | module EpisodesHelper 2 | end 3 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/helpers/sessions_helper.rb: -------------------------------------------------------------------------------- 1 | module SessionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/helpers/static_pages_helper.rb: -------------------------------------------------------------------------------- 1 | module StaticPagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/helpers/users_helper.rb: -------------------------------------------------------------------------------- 1 | module UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/helpers/webhooks_helper.rb: -------------------------------------------------------------------------------- 1 | module WebhooksHelper 2 | end 3 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/javascript/channels/consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/javascript/channels/consumer.js -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/javascript/channels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/javascript/channels/index.js -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/javascript/packs/application.js -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/models/application_record.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/models/user.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/views/episodes/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/views/episodes/index.html.erb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/views/layouts/dashboard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/views/layouts/dashboard.html.erb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/views/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/views/sessions/new.html.erb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/views/static_pages/pricing.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/views/static_pages/pricing.html.erb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/views/static_pages/root.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/views/static_pages/root.html.erb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/views/users/checkout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/views/users/checkout.html.erb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/app/views/users/new.html.erb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/babel.config.js -------------------------------------------------------------------------------- /2020-06-29-customer-portal/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/bin/bundle -------------------------------------------------------------------------------- /2020-06-29-customer-portal/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/bin/rails -------------------------------------------------------------------------------- /2020-06-29-customer-portal/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/bin/rake -------------------------------------------------------------------------------- /2020-06-29-customer-portal/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/bin/setup -------------------------------------------------------------------------------- /2020-06-29-customer-portal/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/bin/spring -------------------------------------------------------------------------------- /2020-06-29-customer-portal/bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/bin/webpack -------------------------------------------------------------------------------- /2020-06-29-customer-portal/bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/bin/webpack-dev-server -------------------------------------------------------------------------------- /2020-06-29-customer-portal/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/bin/yarn -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config.ru -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/application.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/boot.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/cable.yml -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/credentials.yml.enc -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/database.yml -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/environment.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/environments/development.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/environments/production.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/environments/test.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/initializers/assets.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/initializers/inflections.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/initializers/stripe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/initializers/stripe.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/locales/en.yml -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/puma.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/routes.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/spring.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/storage.yml -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/webpack/development.js -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/webpack/environment.js -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/webpack/production.js -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/webpack/test.js -------------------------------------------------------------------------------- /2020-06-29-customer-portal/config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/config/webpacker.yml -------------------------------------------------------------------------------- /2020-06-29-customer-portal/customer_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/customer_portal.png -------------------------------------------------------------------------------- /2020-06-29-customer-portal/customer_portal_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/customer_portal_settings.png -------------------------------------------------------------------------------- /2020-06-29-customer-portal/db/migrate/20200423214328_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/db/migrate/20200423214328_create_users.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/db/schema.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/db/seeds.rb -------------------------------------------------------------------------------- /2020-06-29-customer-portal/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/package.json -------------------------------------------------------------------------------- /2020-06-29-customer-portal/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/postcss.config.js -------------------------------------------------------------------------------- /2020-06-29-customer-portal/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/public/404.html -------------------------------------------------------------------------------- /2020-06-29-customer-portal/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/public/422.html -------------------------------------------------------------------------------- /2020-06-29-customer-portal/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/public/500.html -------------------------------------------------------------------------------- /2020-06-29-customer-portal/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/public/avillatheory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/public/avillatheory.png -------------------------------------------------------------------------------- /2020-06-29-customer-portal/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2020-06-29-customer-portal/public/packs/js/application-bbe9c4a129ab949e0636.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/public/packs/js/application-bbe9c4a129ab949e0636.js -------------------------------------------------------------------------------- /2020-06-29-customer-portal/public/packs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/public/packs/manifest.json -------------------------------------------------------------------------------- /2020-06-29-customer-portal/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-06-29-customer-portal/public/robots.txt -------------------------------------------------------------------------------- /2020-09-10-checkout-taxes-coupons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-10-checkout-taxes-coupons/LICENSE -------------------------------------------------------------------------------- /2020-09-10-checkout-taxes-coupons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-10-checkout-taxes-coupons/README.md -------------------------------------------------------------------------------- /2020-09-10-checkout-taxes-coupons/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-10-checkout-taxes-coupons/client/index.html -------------------------------------------------------------------------------- /2020-09-10-checkout-taxes-coupons/client/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-10-checkout-taxes-coupons/client/success.html -------------------------------------------------------------------------------- /2020-09-10-checkout-taxes-coupons/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-10-checkout-taxes-coupons/server/README.md -------------------------------------------------------------------------------- /2020-09-10-checkout-taxes-coupons/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-10-checkout-taxes-coupons/server/package-lock.json -------------------------------------------------------------------------------- /2020-09-10-checkout-taxes-coupons/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-10-checkout-taxes-coupons/server/package.json -------------------------------------------------------------------------------- /2020-09-10-checkout-taxes-coupons/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-10-checkout-taxes-coupons/server/server.js -------------------------------------------------------------------------------- /2020-09-17-checkout-bacs-payment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-17-checkout-bacs-payment/LICENSE -------------------------------------------------------------------------------- /2020-09-17-checkout-bacs-payment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-17-checkout-bacs-payment/README.md -------------------------------------------------------------------------------- /2020-09-17-checkout-bacs-payment/client/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-17-checkout-bacs-payment/client/index.erb -------------------------------------------------------------------------------- /2020-09-17-checkout-bacs-payment/client/redirect.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-17-checkout-bacs-payment/client/redirect.erb -------------------------------------------------------------------------------- /2020-09-17-checkout-bacs-payment/client/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-17-checkout-bacs-payment/client/styles.css -------------------------------------------------------------------------------- /2020-09-17-checkout-bacs-payment/server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-17-checkout-bacs-payment/server/.env.example -------------------------------------------------------------------------------- /2020-09-17-checkout-bacs-payment/server/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-17-checkout-bacs-payment/server/Gemfile -------------------------------------------------------------------------------- /2020-09-17-checkout-bacs-payment/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-17-checkout-bacs-payment/server/README.md -------------------------------------------------------------------------------- /2020-09-17-checkout-bacs-payment/server/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-17-checkout-bacs-payment/server/server.rb -------------------------------------------------------------------------------- /2020-09-23-checkout-sepa-payment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-23-checkout-sepa-payment/LICENSE -------------------------------------------------------------------------------- /2020-09-23-checkout-sepa-payment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-23-checkout-sepa-payment/README.md -------------------------------------------------------------------------------- /2020-09-23-checkout-sepa-payment/client/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-23-checkout-sepa-payment/client/index.erb -------------------------------------------------------------------------------- /2020-09-23-checkout-sepa-payment/client/redirect.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-23-checkout-sepa-payment/client/redirect.erb -------------------------------------------------------------------------------- /2020-09-23-checkout-sepa-payment/client/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-23-checkout-sepa-payment/client/styles.css -------------------------------------------------------------------------------- /2020-09-23-checkout-sepa-payment/server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-23-checkout-sepa-payment/server/.env.example -------------------------------------------------------------------------------- /2020-09-23-checkout-sepa-payment/server/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-23-checkout-sepa-payment/server/Gemfile -------------------------------------------------------------------------------- /2020-09-23-checkout-sepa-payment/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-23-checkout-sepa-payment/server/README.md -------------------------------------------------------------------------------- /2020-09-23-checkout-sepa-payment/server/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-09-23-checkout-sepa-payment/server/server.rb -------------------------------------------------------------------------------- /2020-10-08-accept-a-payment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-08-accept-a-payment/LICENSE -------------------------------------------------------------------------------- /2020-10-08-accept-a-payment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-08-accept-a-payment/README.md -------------------------------------------------------------------------------- /2020-10-08-accept-a-payment/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-08-accept-a-payment/client/index.html -------------------------------------------------------------------------------- /2020-10-08-accept-a-payment/server/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-08-accept-a-payment/server/Gemfile -------------------------------------------------------------------------------- /2020-10-08-accept-a-payment/server/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-08-accept-a-payment/server/Gemfile.lock -------------------------------------------------------------------------------- /2020-10-08-accept-a-payment/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-08-accept-a-payment/server/README.md -------------------------------------------------------------------------------- /2020-10-08-accept-a-payment/server/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-08-accept-a-payment/server/server.rb -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/authentication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/authentication/Program.cs -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/authentication/authentication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/authentication/authentication.csproj -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/authentication/obj/Debug/netcoreapp3.1/authentication.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f167ad481a723d45401e4a20c614b5f5ab1bc619 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/authentication/obj/Debug/netcoreapp3.1/authentication.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/authentication/obj/Debug/netcoreapp3.1/authentication.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0fdd068d84ae1d2c1967e3e19495e9d68efa44fd 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/authentication/obj/Debug/netcoreapp3.1/authentication.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/authentication/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/authentication/obj/project.assets.json -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/authentication/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/authentication/obj/project.nuget.cache -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/idempotency/.vs/Idempotency/xs/UserPrefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/idempotency/.vs/Idempotency/xs/UserPrefs.xml -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/idempotency/Idempotency.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/idempotency/Idempotency.sln -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/idempotency/Idempotency/Idempotency.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/idempotency/Idempotency/Idempotency.csproj -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/idempotency/Idempotency/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/idempotency/Idempotency/Program.cs -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/idempotency/Idempotency/obj/Debug/netcoreapp3.1/Idempotency.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/Program.cs -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/bin/Debug/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/bin/Debug/net5.0/Stripe.net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/bin/Debug/net5.0/Stripe.net.dll -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/bin/Debug/net5.0/metadata.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/bin/Debug/net5.0/metadata.deps.json -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/bin/Debug/net5.0/metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/bin/Debug/net5.0/metadata.dll -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/bin/Debug/net5.0/metadata.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/bin/Debug/net5.0/metadata.pdb -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/bin/Debug/net5.0/ref/metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/bin/Debug/net5.0/ref/metadata.dll -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/metadata.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/metadata.csproj -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/obj/Debug/net5.0/metadata.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6c4df21223c927184e8398f20f8ab442b5485e96 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/obj/Debug/net5.0/metadata.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/obj/Debug/net5.0/metadata.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | df8b5913bce5f0daada0b87538531f8b067b125a 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/obj/Debug/net5.0/metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/obj/Debug/net5.0/metadata.dll -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/obj/Debug/net5.0/metadata.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 1be2ae4612295ffbe0abd8c483cd6fca77b100a8 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/obj/Debug/net5.0/metadata.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/obj/Debug/net5.0/metadata.pdb -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/obj/Debug/net5.0/ref/metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/obj/Debug/net5.0/ref/metadata.dll -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/obj/metadata.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/obj/metadata.csproj.nuget.g.props -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/obj/metadata.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/obj/metadata.csproj.nuget.g.targets -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/obj/project.assets.json -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/metadata/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/metadata/obj/project.nuget.cache -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/pagination/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/pagination/Program.cs -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/pagination/obj/Debug/netcoreapp3.1/pagination.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 78da76dbaf5ac6aeab89e5fc003d963236af5616 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/pagination/obj/Debug/netcoreapp3.1/pagination.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/pagination/obj/Debug/netcoreapp3.1/pagination.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a0cbedada0fb44936c1470baf8cf192d4cb62261 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/pagination/obj/Debug/netcoreapp3.1/pagination.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/pagination/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/pagination/obj/project.assets.json -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/pagination/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/pagination/obj/project.nuget.cache -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/pagination/pagination.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/pagination/pagination.csproj -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/requests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/requests/Program.cs -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/requests/bin/Debug/netcoreapp3.1/requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/requests/bin/Debug/netcoreapp3.1/requests.dll -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/requests/bin/Debug/netcoreapp3.1/requests.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/requests/bin/Debug/netcoreapp3.1/requests.pdb -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/requests/obj/Debug/netcoreapp3.1/requests.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 3def601b62e19fff751f706f33204bf2b3517b54 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/requests/obj/Debug/netcoreapp3.1/requests.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/requests/obj/Debug/netcoreapp3.1/requests.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ea5332b7848c96133ba9c9fd0824a15797033c64 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/requests/obj/Debug/netcoreapp3.1/requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/requests/obj/Debug/netcoreapp3.1/requests.dll -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/requests/obj/Debug/netcoreapp3.1/requests.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/requests/obj/Debug/netcoreapp3.1/requests.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/requests/obj/Debug/netcoreapp3.1/requests.pdb -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/requests/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/requests/obj/project.assets.json -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/requests/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/requests/obj/project.nuget.cache -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/requests/obj/requests.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/requests/obj/requests.csproj.nuget.g.props -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/requests/obj/requests.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/requests/obj/requests.csproj.nuget.g.targets -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/requests/requests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/requests/requests.csproj -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/versioning/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/versioning/Program.cs -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/versioning/obj/Debug/netcoreapp3.1/versioning.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | eabdc67f4e64423e504e14c342d48632a9034f23 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/versioning/obj/Debug/netcoreapp3.1/versioning.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/versioning/obj/Debug/netcoreapp3.1/versioning.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bb1272fa7384d5828e09a816116c0b3d5d3d96b2 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/versioning/obj/Debug/netcoreapp3.1/versioning.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/versioning/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/versioning/obj/project.assets.json -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/versioning/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/versioning/obj/project.nuget.cache -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/versioning/versioning.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/versioning/versioning.csproj -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/webhooks/Configuration/StripeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/webhooks/Configuration/StripeOptions.cs -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/webhooks/Controllers/PaymentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/webhooks/Controllers/PaymentsController.cs -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/webhooks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/webhooks/Program.cs -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/webhooks/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/webhooks/Properties/launchSettings.json -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/webhooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/webhooks/README.md -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/webhooks/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/webhooks/Startup.cs -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/webhooks/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/webhooks/appsettings.Development.json -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/webhooks/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/webhooks/appsettings.json -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/webhooks/server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/webhooks/server.csproj -------------------------------------------------------------------------------- /2020-10-30-client-libraries/dotnet/webhooks/server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/dotnet/webhooks/server.sln -------------------------------------------------------------------------------- /2020-10-30-client-libraries/go/authentication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/go/authentication.go -------------------------------------------------------------------------------- /2020-10-30-client-libraries/go/demo_requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/go/demo_requests.go -------------------------------------------------------------------------------- /2020-10-30-client-libraries/go/idempotency/create_customer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/go/idempotency/create_customer.go -------------------------------------------------------------------------------- /2020-10-30-client-libraries/go/idempotency/create_uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/go/idempotency/create_uuid.go -------------------------------------------------------------------------------- /2020-10-30-client-libraries/go/idempotency/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/go/idempotency/go.mod -------------------------------------------------------------------------------- /2020-10-30-client-libraries/go/idempotency/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/go/idempotency/go.sum -------------------------------------------------------------------------------- /2020-10-30-client-libraries/go/idempotency/max_network_retries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/go/idempotency/max_network_retries.go -------------------------------------------------------------------------------- /2020-10-30-client-libraries/go/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/go/metadata.go -------------------------------------------------------------------------------- /2020-10-30-client-libraries/go/pagination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/go/pagination.go -------------------------------------------------------------------------------- /2020-10-30-client-libraries/go/versioning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/go/versioning.go -------------------------------------------------------------------------------- /2020-10-30-client-libraries/go/webhooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/go/webhooks/README.md -------------------------------------------------------------------------------- /2020-10-30-client-libraries/go/webhooks/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/go/webhooks/go.mod -------------------------------------------------------------------------------- /2020-10-30-client-libraries/go/webhooks/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/go/webhooks/go.sum -------------------------------------------------------------------------------- /2020-10-30-client-libraries/go/webhooks/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/go/webhooks/server.go -------------------------------------------------------------------------------- /2020-10-30-client-libraries/java/Authentication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/java/Authentication.java -------------------------------------------------------------------------------- /2020-10-30-client-libraries/java/DemoRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/java/DemoRequest.java -------------------------------------------------------------------------------- /2020-10-30-client-libraries/java/Metadata.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/java/Metadata.java -------------------------------------------------------------------------------- /2020-10-30-client-libraries/java/Pagination.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/java/Pagination.java -------------------------------------------------------------------------------- /2020-10-30-client-libraries/java/Versioning.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/java/Versioning.java -------------------------------------------------------------------------------- /2020-10-30-client-libraries/java/build_java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/java/build_java.sh -------------------------------------------------------------------------------- /2020-10-30-client-libraries/java/gson-2.8.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/java/gson-2.8.5.jar -------------------------------------------------------------------------------- /2020-10-30-client-libraries/java/idempotency/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/java/idempotency/pom.xml -------------------------------------------------------------------------------- /2020-10-30-client-libraries/java/stripe-java-20.14.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/java/stripe-java-20.14.0.jar -------------------------------------------------------------------------------- /2020-10-30-client-libraries/java/webhooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/java/webhooks/README.md -------------------------------------------------------------------------------- /2020-10-30-client-libraries/java/webhooks/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/java/webhooks/pom.xml -------------------------------------------------------------------------------- /2020-10-30-client-libraries/node/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/node/authentication.js -------------------------------------------------------------------------------- /2020-10-30-client-libraries/node/demo_requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/node/demo_requests.js -------------------------------------------------------------------------------- /2020-10-30-client-libraries/node/idempotency/create_customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/node/idempotency/create_customer.js -------------------------------------------------------------------------------- /2020-10-30-client-libraries/node/idempotency/create_uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/node/idempotency/create_uuid.js -------------------------------------------------------------------------------- /2020-10-30-client-libraries/node/idempotency/max_network_retries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/node/idempotency/max_network_retries.js -------------------------------------------------------------------------------- /2020-10-30-client-libraries/node/idempotency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/node/idempotency/package.json -------------------------------------------------------------------------------- /2020-10-30-client-libraries/node/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/node/metadata.js -------------------------------------------------------------------------------- /2020-10-30-client-libraries/node/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/node/pagination.js -------------------------------------------------------------------------------- /2020-10-30-client-libraries/node/versioning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/node/versioning.js -------------------------------------------------------------------------------- /2020-10-30-client-libraries/node/webhooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/node/webhooks/README.md -------------------------------------------------------------------------------- /2020-10-30-client-libraries/node/webhooks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/node/webhooks/package.json -------------------------------------------------------------------------------- /2020-10-30-client-libraries/node/webhooks/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/node/webhooks/server.js -------------------------------------------------------------------------------- /2020-10-30-client-libraries/php/authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/php/authentication.php -------------------------------------------------------------------------------- /2020-10-30-client-libraries/php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/php/composer.json -------------------------------------------------------------------------------- /2020-10-30-client-libraries/php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/php/composer.lock -------------------------------------------------------------------------------- /2020-10-30-client-libraries/php/demo_requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/php/demo_requests.php -------------------------------------------------------------------------------- /2020-10-30-client-libraries/php/idempotency/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/php/idempotency/composer.json -------------------------------------------------------------------------------- /2020-10-30-client-libraries/php/idempotency/create_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/php/idempotency/create_customer.php -------------------------------------------------------------------------------- /2020-10-30-client-libraries/php/idempotency/create_uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/php/idempotency/create_uuid.php -------------------------------------------------------------------------------- /2020-10-30-client-libraries/php/idempotency/max_network_retries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/php/idempotency/max_network_retries.php -------------------------------------------------------------------------------- /2020-10-30-client-libraries/php/metadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/php/metadata.php -------------------------------------------------------------------------------- /2020-10-30-client-libraries/php/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/php/pagination.php -------------------------------------------------------------------------------- /2020-10-30-client-libraries/php/versioning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/php/versioning.php -------------------------------------------------------------------------------- /2020-10-30-client-libraries/php/webhooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/php/webhooks/README.md -------------------------------------------------------------------------------- /2020-10-30-client-libraries/php/webhooks/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/php/webhooks/index.php -------------------------------------------------------------------------------- /2020-10-30-client-libraries/python/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/python/authentication.py -------------------------------------------------------------------------------- /2020-10-30-client-libraries/python/demo_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/python/demo_requests.py -------------------------------------------------------------------------------- /2020-10-30-client-libraries/python/idempotency/create_customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/python/idempotency/create_customer.py -------------------------------------------------------------------------------- /2020-10-30-client-libraries/python/idempotency/create_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/python/idempotency/create_uuid.py -------------------------------------------------------------------------------- /2020-10-30-client-libraries/python/idempotency/max_network_retries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/python/idempotency/max_network_retries.py -------------------------------------------------------------------------------- /2020-10-30-client-libraries/python/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/python/metadata.py -------------------------------------------------------------------------------- /2020-10-30-client-libraries/python/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/python/pagination.py -------------------------------------------------------------------------------- /2020-10-30-client-libraries/python/versioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/python/versioning.py -------------------------------------------------------------------------------- /2020-10-30-client-libraries/python/webhooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/python/webhooks/README.md -------------------------------------------------------------------------------- /2020-10-30-client-libraries/python/webhooks/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/python/webhooks/server.py -------------------------------------------------------------------------------- /2020-10-30-client-libraries/ruby/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/ruby/authentication.rb -------------------------------------------------------------------------------- /2020-10-30-client-libraries/ruby/demo_requests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/ruby/demo_requests.rb -------------------------------------------------------------------------------- /2020-10-30-client-libraries/ruby/idempotency/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/ruby/idempotency/Gemfile -------------------------------------------------------------------------------- /2020-10-30-client-libraries/ruby/idempotency/create_customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/ruby/idempotency/create_customer.rb -------------------------------------------------------------------------------- /2020-10-30-client-libraries/ruby/idempotency/create_uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/ruby/idempotency/create_uuid.rb -------------------------------------------------------------------------------- /2020-10-30-client-libraries/ruby/idempotency/max_network_retries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/ruby/idempotency/max_network_retries.rb -------------------------------------------------------------------------------- /2020-10-30-client-libraries/ruby/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/ruby/metadata.rb -------------------------------------------------------------------------------- /2020-10-30-client-libraries/ruby/pagination.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/ruby/pagination.rb -------------------------------------------------------------------------------- /2020-10-30-client-libraries/ruby/versioning.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/ruby/versioning.rb -------------------------------------------------------------------------------- /2020-10-30-client-libraries/ruby/webhooks/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/ruby/webhooks/Gemfile -------------------------------------------------------------------------------- /2020-10-30-client-libraries/ruby/webhooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/ruby/webhooks/README.md -------------------------------------------------------------------------------- /2020-10-30-client-libraries/ruby/webhooks/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-10-30-client-libraries/ruby/webhooks/server.rb -------------------------------------------------------------------------------- /2020-12-15-clone-payment-method/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-12-15-clone-payment-method/LICENSE -------------------------------------------------------------------------------- /2020-12-15-clone-payment-method/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-12-15-clone-payment-method/README.md -------------------------------------------------------------------------------- /2020-12-15-clone-payment-method/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-12-15-clone-payment-method/client/index.html -------------------------------------------------------------------------------- /2020-12-15-clone-payment-method/clone-payment-method.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-12-15-clone-payment-method/clone-payment-method.gif -------------------------------------------------------------------------------- /2020-12-15-clone-payment-method/server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-12-15-clone-payment-method/server/.env.example -------------------------------------------------------------------------------- /2020-12-15-clone-payment-method/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-12-15-clone-payment-method/server/README.md -------------------------------------------------------------------------------- /2020-12-15-clone-payment-method/server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-12-15-clone-payment-method/server/requirements.txt -------------------------------------------------------------------------------- /2020-12-15-clone-payment-method/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2020-12-15-clone-payment-method/server/server.py -------------------------------------------------------------------------------- /2021-06-15-identity/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2021-06-15-identity/.env.example -------------------------------------------------------------------------------- /2021-06-15-identity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2021-06-15-identity/.gitignore -------------------------------------------------------------------------------- /2021-06-15-identity/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2021-06-15-identity/LICENSE -------------------------------------------------------------------------------- /2021-06-15-identity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2021-06-15-identity/README.md -------------------------------------------------------------------------------- /2021-06-15-identity/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2021-06-15-identity/client/index.html -------------------------------------------------------------------------------- /2021-06-15-identity/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2021-06-15-identity/server/README.md -------------------------------------------------------------------------------- /2021-06-15-identity/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2021-06-15-identity/server/package-lock.json -------------------------------------------------------------------------------- /2021-06-15-identity/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2021-06-15-identity/server/package.json -------------------------------------------------------------------------------- /2021-06-15-identity/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/2021-06-15-identity/server/server.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/README.md -------------------------------------------------------------------------------- /assets/developer-office-hours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/assets/developer-office-hours.png -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/accept-a-payment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/docs/accept-a-payment.css -------------------------------------------------------------------------------- /docs/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/docs/demo.css -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/pins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/docs/pins.png -------------------------------------------------------------------------------- /starter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/LICENSE -------------------------------------------------------------------------------- /starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/README.md -------------------------------------------------------------------------------- /starter/client/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/client/html/index.html -------------------------------------------------------------------------------- /starter/client/react-cra/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/client/react-cra/package.json -------------------------------------------------------------------------------- /starter/client/react-cra/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/client/react-cra/public/index.html -------------------------------------------------------------------------------- /starter/client/react-cra/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/client/react-cra/src/App.js -------------------------------------------------------------------------------- /starter/client/react-cra/src/PaymentForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/client/react-cra/src/PaymentForm.js -------------------------------------------------------------------------------- /starter/client/react-cra/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/client/react-cra/src/index.js -------------------------------------------------------------------------------- /starter/client/react-cra/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/client/react-cra/yarn.lock -------------------------------------------------------------------------------- /starter/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/README.md -------------------------------------------------------------------------------- /starter/server/dotnet/Configuration/StripeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/Configuration/StripeOptions.cs -------------------------------------------------------------------------------- /starter/server/dotnet/Controllers/PaymentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/Controllers/PaymentsController.cs -------------------------------------------------------------------------------- /starter/server/dotnet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/Program.cs -------------------------------------------------------------------------------- /starter/server/dotnet/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/Properties/launchSettings.json -------------------------------------------------------------------------------- /starter/server/dotnet/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/Startup.cs -------------------------------------------------------------------------------- /starter/server/dotnet/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/appsettings.Development.json -------------------------------------------------------------------------------- /starter/server/dotnet/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/appsettings.json -------------------------------------------------------------------------------- /starter/server/dotnet/bin/Debug/netcoreapp3.1/DotNetEnv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/bin/Debug/netcoreapp3.1/DotNetEnv.dll -------------------------------------------------------------------------------- /starter/server/dotnet/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll -------------------------------------------------------------------------------- /starter/server/dotnet/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /starter/server/dotnet/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /starter/server/dotnet/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /starter/server/dotnet/bin/Debug/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/bin/Debug/netcoreapp3.1/Properties/launchSettings.json -------------------------------------------------------------------------------- /starter/server/dotnet/bin/Debug/netcoreapp3.1/Stripe.net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/bin/Debug/netcoreapp3.1/Stripe.net.dll -------------------------------------------------------------------------------- /starter/server/dotnet/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /starter/server/dotnet/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /starter/server/dotnet/bin/Debug/netcoreapp3.1/server.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/bin/Debug/netcoreapp3.1/server.deps.json -------------------------------------------------------------------------------- /starter/server/dotnet/bin/Debug/netcoreapp3.1/server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/bin/Debug/netcoreapp3.1/server.dll -------------------------------------------------------------------------------- /starter/server/dotnet/bin/Debug/netcoreapp3.1/server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/bin/Debug/netcoreapp3.1/server.pdb -------------------------------------------------------------------------------- /starter/server/dotnet/bin/Debug/netcoreapp3.1/server.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/bin/Debug/netcoreapp3.1/server.runtimeconfig.dev.json -------------------------------------------------------------------------------- /starter/server/dotnet/bin/Debug/netcoreapp3.1/server.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/bin/Debug/netcoreapp3.1/server.runtimeconfig.json -------------------------------------------------------------------------------- /starter/server/dotnet/obj/Debug/netcoreapp3.1/server.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/obj/Debug/netcoreapp3.1/server.AssemblyInfo.cs -------------------------------------------------------------------------------- /starter/server/dotnet/obj/Debug/netcoreapp3.1/server.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7550e82ffe0e1175cb956ef1940dcdca83c9a728 2 | -------------------------------------------------------------------------------- /starter/server/dotnet/obj/Debug/netcoreapp3.1/server.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter/server/dotnet/obj/Debug/netcoreapp3.1/server.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 926fc92fdc6d4c12aea148b95295b43d238a48d3 2 | -------------------------------------------------------------------------------- /starter/server/dotnet/obj/Debug/netcoreapp3.1/server.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/obj/Debug/netcoreapp3.1/server.assets.cache -------------------------------------------------------------------------------- /starter/server/dotnet/obj/Debug/netcoreapp3.1/server.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter/server/dotnet/obj/Debug/netcoreapp3.1/server.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5f5b96926433d701f5f3e7732435e8c6063c4abc 2 | -------------------------------------------------------------------------------- /starter/server/dotnet/obj/Debug/netcoreapp3.1/server.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/obj/Debug/netcoreapp3.1/server.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /starter/server/dotnet/obj/Debug/netcoreapp3.1/server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/obj/Debug/netcoreapp3.1/server.dll -------------------------------------------------------------------------------- /starter/server/dotnet/obj/Debug/netcoreapp3.1/server.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /starter/server/dotnet/obj/Debug/netcoreapp3.1/server.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/obj/Debug/netcoreapp3.1/server.pdb -------------------------------------------------------------------------------- /starter/server/dotnet/obj/Debug/netcoreapp3.1/staticwebassets/server.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter/server/dotnet/obj/Debug/netcoreapp3.1/staticwebassets/server.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /starter/server/dotnet/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/obj/project.assets.json -------------------------------------------------------------------------------- /starter/server/dotnet/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/obj/project.nuget.cache -------------------------------------------------------------------------------- /starter/server/dotnet/obj/server.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/obj/server.csproj.nuget.cache -------------------------------------------------------------------------------- /starter/server/dotnet/obj/server.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/obj/server.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /starter/server/dotnet/obj/server.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/obj/server.csproj.nuget.g.props -------------------------------------------------------------------------------- /starter/server/dotnet/obj/server.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/obj/server.csproj.nuget.g.targets -------------------------------------------------------------------------------- /starter/server/dotnet/server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/server.csproj -------------------------------------------------------------------------------- /starter/server/dotnet/server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/dotnet/server.sln -------------------------------------------------------------------------------- /starter/server/go-echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/go-echo/README.md -------------------------------------------------------------------------------- /starter/server/go-echo/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/go-echo/server.go -------------------------------------------------------------------------------- /starter/server/go-http/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/go-http/go.mod -------------------------------------------------------------------------------- /starter/server/go-http/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/go-http/go.sum -------------------------------------------------------------------------------- /starter/server/go-http/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/go-http/server.go -------------------------------------------------------------------------------- /starter/server/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/java/pom.xml -------------------------------------------------------------------------------- /starter/server/java/src/main/java/com/stripe/sample/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/java/src/main/java/com/stripe/sample/Server.java -------------------------------------------------------------------------------- /starter/server/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/node/README.md -------------------------------------------------------------------------------- /starter/server/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/node/package.json -------------------------------------------------------------------------------- /starter/server/node/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/node/server.js -------------------------------------------------------------------------------- /starter/server/php-slim/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/php-slim/.htaccess -------------------------------------------------------------------------------- /starter/server/php-slim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/php-slim/README.md -------------------------------------------------------------------------------- /starter/server/php-slim/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/php-slim/composer.json -------------------------------------------------------------------------------- /starter/server/php-slim/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/php-slim/composer.lock -------------------------------------------------------------------------------- /starter/server/php-slim/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/php-slim/index.php -------------------------------------------------------------------------------- /starter/server/php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/php/composer.json -------------------------------------------------------------------------------- /starter/server/php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/php/composer.lock -------------------------------------------------------------------------------- /starter/server/php/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/php/public/index.php -------------------------------------------------------------------------------- /starter/server/php/public/shared.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/php/public/shared.php -------------------------------------------------------------------------------- /starter/server/php/public/webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/php/public/webhook.php -------------------------------------------------------------------------------- /starter/server/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/python/README.md -------------------------------------------------------------------------------- /starter/server/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/python/requirements.txt -------------------------------------------------------------------------------- /starter/server/python/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/python/server.py -------------------------------------------------------------------------------- /starter/server/ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/ruby/Gemfile -------------------------------------------------------------------------------- /starter/server/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/ruby/README.md -------------------------------------------------------------------------------- /starter/server/ruby/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe-archive/developer-office-hours/HEAD/starter/server/ruby/server.rb --------------------------------------------------------------------------------