├── .github └── workflows │ ├── _commit.yml │ ├── crm.yml │ ├── infra.yml │ ├── inventory.yml │ ├── invoicing.yml │ ├── ordering.yml │ ├── payments.yml │ ├── pricing-coverage.yml │ ├── pricing-mutate.yml │ ├── pricing.yml │ ├── product_catalog.yml │ ├── rails_application-coverage.yml │ ├── rails_application-mutate.yml │ ├── rails_application.yml │ ├── shipping.yml │ ├── stores.yml │ ├── taxes.yml │ └── todo.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── ecommerce ├── authentication │ ├── .mutant.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── README.md │ ├── lib │ │ ├── authentication.rb │ │ └── authentication │ │ │ ├── account.rb │ │ │ ├── account_service.rb │ │ │ ├── commands │ │ │ ├── connect_account_to_client.rb │ │ │ ├── register_account.rb │ │ │ ├── set_login.rb │ │ │ └── set_password_hash.rb │ │ │ └── events │ │ │ ├── account_connected_to_client.rb │ │ │ ├── account_registered.rb │ │ │ ├── login_set.rb │ │ │ └── password_hash_set.rb │ └── test │ │ ├── connect_account_to_client_test.rb │ │ ├── register_account_test.rb │ │ ├── set_login_test.rb │ │ ├── set_password_hash_test.rb │ │ └── test_helper.rb ├── communication │ ├── .mutant.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── README.md │ ├── lib │ │ └── communication.rb │ └── test │ │ ├── sending_message_test.rb │ │ └── test_helper.rb ├── configuration.rb ├── crm │ ├── .mutant.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── README.md │ ├── lib │ │ ├── crm.rb │ │ └── crm │ │ │ ├── commands │ │ │ ├── assign_customer_to_order.rb │ │ │ ├── promote_customer_to_vip.rb │ │ │ └── register_customer.rb │ │ │ ├── customer.rb │ │ │ ├── customer_service.rb │ │ │ ├── events │ │ │ ├── customer_assigned_to_order.rb │ │ │ ├── customer_promoted_to_vip.rb │ │ │ └── customer_registered.rb │ │ │ ├── order.rb │ │ │ └── order_service.rb │ └── test │ │ ├── assign_customer_to_order_test.rb │ │ ├── promote_client_to_vip_test.rb │ │ ├── registration_test.rb │ │ └── test_helper.rb ├── fulfillment │ ├── .mutant.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── lib │ │ ├── fulfillment.rb │ │ └── fulfillment │ │ │ ├── commands │ │ │ ├── cancel_order.rb │ │ │ ├── confirm_order.rb │ │ │ └── register_order.rb │ │ │ ├── events │ │ │ ├── order_cancelled.rb │ │ │ ├── order_confirmed.rb │ │ │ └── order_registered.rb │ │ │ ├── fake_number_generator.rb │ │ │ ├── number_generator.rb │ │ │ ├── on_cancel_order.rb │ │ │ ├── on_confirm_order.rb │ │ │ ├── on_register_order.rb │ │ │ └── order.rb │ └── test │ │ ├── cancel_order_test.rb │ │ ├── confirm_order_test.rb │ │ ├── number_generator_test.rb │ │ ├── register_order_test.rb │ │ └── test_helper.rb ├── inventory │ ├── .mutant.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── README.md │ ├── lib │ │ ├── inventory.rb │ │ └── inventory │ │ │ ├── commands │ │ │ ├── dispatch.rb │ │ │ ├── release.rb │ │ │ ├── reserve.rb │ │ │ └── supply.rb │ │ │ ├── events │ │ │ ├── availability_changed.rb │ │ │ ├── stock_level_changed.rb │ │ │ ├── stock_released.rb │ │ │ └── stock_reserved.rb │ │ │ ├── inventory_entry.rb │ │ │ └── inventory_entry_service.rb │ └── test │ │ ├── dispatch_test.rb │ │ ├── release_test.rb │ │ ├── reserve_test.rb │ │ ├── supply_test.rb │ │ └── test_helper.rb ├── invoicing │ ├── .mutant.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── README.md │ ├── lib │ │ ├── invoicing.rb │ │ └── invoicing │ │ │ ├── commands.rb │ │ │ ├── events.rb │ │ │ ├── fake_concurrent_invoice_number_generator.rb │ │ │ ├── invoice.rb │ │ │ ├── invoice_item_title_catalog.rb │ │ │ ├── invoice_number_generator.rb │ │ │ ├── product.rb │ │ │ └── services.rb │ └── test │ │ ├── fake_concurrent_invoice_number_generator_test.rb │ │ ├── invoice_item_test.rb │ │ ├── invoice_number_generator_test.rb │ │ ├── invoice_service_test.rb │ │ ├── setting_product_displayed_name_test.rb │ │ └── test_helper.rb ├── ordering │ ├── .mutant.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── README.md │ ├── lib │ │ ├── ordering.rb │ │ └── ordering │ │ │ ├── commands │ │ │ ├── add_item_to_refund.rb │ │ │ ├── add_item_to_return.rb │ │ │ ├── create_draft_refund.rb │ │ │ ├── create_draft_return.rb │ │ │ ├── remove_item_from_refund.rb │ │ │ └── remove_item_from_return.rb │ │ │ ├── events │ │ │ ├── draft_refund_created.rb │ │ │ ├── draft_return_created.rb │ │ │ ├── item_added_to_refund.rb │ │ │ ├── item_added_to_return.rb │ │ │ ├── item_removed_from_refund.rb │ │ │ └── item_removed_from_return.rb │ │ │ ├── refund.rb │ │ │ ├── refundable_products.rb │ │ │ ├── return.rb │ │ │ ├── returnable_products.rb │ │ │ └── service.rb │ └── test │ │ ├── add_item_to_return_test.rb │ │ ├── create_draft_return_test.rb │ │ ├── remove_item_from_return_test.rb │ │ ├── return_items_list_test.rb │ │ ├── returnable_products_test.rb │ │ └── test_helper.rb ├── payments │ ├── .mutant.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── README.md │ ├── lib │ │ ├── payments.rb │ │ └── payments │ │ │ ├── commands.rb │ │ │ ├── events.rb │ │ │ ├── fake_gateway.rb │ │ │ ├── on_authorize_payment.rb │ │ │ ├── on_capture_payment.rb │ │ │ ├── on_release_payment.rb │ │ │ ├── on_set_payment_amount.rb │ │ │ └── payment.rb │ └── test │ │ ├── fake_gateway_test.rb │ │ ├── on_capture_payment_test.rb │ │ ├── on_release_payment_test.rb │ │ ├── payment_test.rb │ │ └── test_helper.rb ├── pricing │ ├── .mutant.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── README.md │ ├── lib │ │ ├── pricing.rb │ │ └── pricing │ │ │ ├── apply_time_promotion.rb │ │ │ ├── commands.rb │ │ │ ├── coupon.rb │ │ │ ├── discounts.rb │ │ │ ├── events.rb │ │ │ ├── offer.rb │ │ │ ├── price_change.rb │ │ │ ├── promotions_calendar.rb │ │ │ ├── services.rb │ │ │ └── time_promotion.rb │ └── test │ │ ├── apply_time_promotion_test.rb │ │ ├── coupons_test.rb │ │ ├── discounts_test.rb │ │ ├── draft_offer_test.rb │ │ ├── free_products_test.rb │ │ ├── offer_lifecycle_test.rb │ │ ├── pricing_test.rb │ │ ├── product_test.rb │ │ ├── promotions_calendar_test.rb │ │ ├── simple_offer_test.rb │ │ ├── test_helper.rb │ │ ├── time_promotion_test.rb │ │ └── use_coupon_test.rb ├── product_catalog │ ├── .mutant.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── README.md │ ├── lib │ │ ├── product_catalog.rb │ │ └── product_catalog │ │ │ ├── commands.rb │ │ │ ├── events.rb │ │ │ ├── naming.rb │ │ │ └── registration.rb │ └── test │ │ ├── naming_test.rb │ │ ├── registration_test.rb │ │ └── test_helper.rb ├── shipping │ ├── .mutant.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── README.md │ ├── lib │ │ ├── shipping.rb │ │ └── shipping │ │ │ ├── commands │ │ │ ├── add_item_to_shipment_picking_list.rb │ │ │ ├── add_shipping_address_to_shipment.rb │ │ │ ├── authorize_shipment.rb │ │ │ ├── remove_item_from_shipment_picking_list.rb │ │ │ └── submit_shipment.rb │ │ │ ├── events │ │ │ ├── item_added_to_shipment_picking_list.rb │ │ │ ├── item_removed_from_shipment_picking_list.rb │ │ │ ├── shipment_authorized.rb │ │ │ ├── shipment_submitted.rb │ │ │ └── shipping_address_added_to_shipment.rb │ │ │ ├── picking_list.rb │ │ │ ├── picking_list_item.rb │ │ │ ├── services │ │ │ ├── on_add_item_to_shipment_picking_list.rb │ │ │ ├── on_add_shipping_address_to_shipment.rb │ │ │ ├── on_authorize_shipment.rb │ │ │ ├── on_remove_item_from_shipment_picking_list.rb │ │ │ └── on_submit_shipment.rb │ │ │ └── shipment.rb │ └── test │ │ ├── on_add_item_to_shipment_picking_list_test.rb │ │ ├── on_add_shipping_address_to_shipment_test.rb │ │ ├── on_authorize_shipment_test.rb │ │ ├── on_remove_item_from_shipment_picking_list_test.rb │ │ ├── on_submit_shipment_test.rb │ │ ├── picking_list_item_test.rb │ │ ├── picking_list_test.rb │ │ ├── shipment_test.rb │ │ └── test_helper.rb ├── stores │ ├── .mutant.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── README.md │ ├── lib │ │ ├── stores.rb │ │ └── stores │ │ │ ├── commands.rb │ │ │ ├── customer_registration.rb │ │ │ ├── events.rb │ │ │ ├── naming.rb │ │ │ ├── offer_registration.rb │ │ │ ├── product_registration.rb │ │ │ ├── registration.rb │ │ │ └── store_name.rb │ └── test │ │ ├── customer_registration_test.rb │ │ ├── naming_test.rb │ │ ├── offer_registration_test.rb │ │ ├── product_registration_test.rb │ │ ├── registration_test.rb │ │ ├── store_name_test.rb │ │ └── test_helper.rb ├── taxes │ ├── .mutant.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── README.md │ ├── lib │ │ ├── taxes.rb │ │ └── taxes │ │ │ ├── commands.rb │ │ │ ├── events.rb │ │ │ ├── product.rb │ │ │ ├── services.rb │ │ │ └── vat_rate_catalog.rb │ └── test │ │ ├── taxes_test.rb │ │ ├── test_helper.rb │ │ └── vat_rate_catalog_test.rb └── todo │ ├── .mutant.yml │ ├── Gemfile │ ├── Gemfile.lock │ ├── Makefile │ ├── README.md │ ├── lib │ ├── todo.rb │ └── todo │ │ └── todo.rb │ └── test │ ├── test_helper.rb │ └── todo_test.rb ├── eventcatalog.config.js ├── hanami_application └── README.md ├── infra ├── .mutant.yml ├── Gemfile ├── Gemfile.lock ├── Gemfile.test ├── Makefile ├── infra.gemspec ├── lib │ ├── infra.rb │ └── infra │ │ ├── aggregate_root_repository.rb │ │ ├── command.rb │ │ ├── command_bus.rb │ │ ├── event.rb │ │ ├── event_store.rb │ │ ├── process.rb │ │ ├── process_manager.rb │ │ ├── retry.rb │ │ ├── testing.rb │ │ └── types.rb └── test │ ├── retry_test.rb │ ├── test_helper.rb │ └── vat_rate_test.rb ├── pricing_catalog_rails_app ├── .dockerignore ├── .gitignore ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app │ ├── admin │ │ ├── read_models │ │ │ └── admin_catalog │ │ │ │ ├── admin_catalog.rb │ │ │ │ └── index.html.erb │ │ └── register_product.rb │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── admin │ │ │ └── catalog_controller.rb │ │ ├── application_controller.rb │ │ ├── catalog_controller.rb │ │ └── concerns │ │ │ └── .keep │ ├── helpers │ │ └── application_helper.rb │ ├── javascript │ │ ├── application.js │ │ └── controllers │ │ │ ├── application.js │ │ │ ├── hello_controller.js │ │ │ └── index.js │ ├── jobs │ │ └── application_job.rb │ ├── models │ │ ├── application_record.rb │ │ └── concerns │ │ │ └── .keep │ ├── public │ │ └── read_models │ │ │ └── public_catalog │ │ │ ├── index.html.erb │ │ │ └── public_catalog.rb │ └── views │ │ └── layouts │ │ └── application.html.erb ├── bin │ ├── bundle │ ├── docker-entrypoint │ ├── importmap │ ├── rails │ ├── rake │ └── setup ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── credentials.yml.enc │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── importmap.rb │ ├── initializers │ │ ├── content_security_policy.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── permissions_policy.rb │ │ └── rails_event_store.rb │ ├── locales │ │ └── en.yml │ ├── master.key │ ├── puma.rb │ └── routes.rb ├── db │ ├── migrate │ │ ├── 20240130110320_create_event_store_events.rb │ │ ├── 20240201132941_enable_pg_crypto.rb │ │ ├── 20240201133038_create_products_table.rb │ │ └── 20240201154705_create_admin_products.rb │ ├── schema.rb │ └── seeds.rb ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep ├── log │ └── .keep ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── favicon.ico │ └── robots.txt ├── storage │ └── .keep ├── test │ ├── application_system_test_case.rb │ ├── channels │ │ └── application_cable │ │ │ └── connection_test.rb │ ├── controllers │ │ └── .keep │ ├── fixtures │ │ └── files │ │ │ └── .keep │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── models │ │ └── .keep │ ├── system │ │ └── .keep │ └── test_helper.rb ├── tmp │ ├── .keep │ ├── local_secret.txt │ ├── pids │ │ └── .keep │ └── storage │ │ └── .keep └── vendor │ ├── .keep │ └── javascript │ └── .keep └── rails_application ├── .env.development ├── .env.test ├── .gitignore ├── .mutant.yml ├── Gemfile ├── Gemfile.lock ├── Makefile ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── builds │ │ └── .keep │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ └── stylesheets │ │ ├── application.css │ │ └── application.tailwind.css ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── client_panel │ └── login.rb ├── controllers │ ├── admin │ │ └── stores_controller.rb │ ├── application_controller.rb │ ├── available_vat_rates_controller.rb │ ├── billing_addresses_controller.rb │ ├── client │ │ ├── base_controller.rb │ │ ├── clients_controller.rb │ │ ├── inbox_controller.rb │ │ ├── orders_controller.rb │ │ └── products_controller.rb │ ├── coupons_controller.rb │ ├── customers_controller.rb │ ├── events_catalog_controller.rb │ ├── invoices_controller.rb │ ├── orders_controller.rb │ ├── product │ │ └── future_price_controller.rb │ ├── products_controller.rb │ ├── returns_controller.rb │ ├── shipments_controller.rb │ ├── shipping_addresses_controller.rb │ ├── stores_controller.rb │ ├── supplies_controller.rb │ └── time_promotions_controller.rb ├── helpers │ └── application_helper.rb ├── javascript │ ├── application.js │ ├── channels │ │ ├── consumer.js │ │ └── index.js │ └── controllers │ │ ├── application.js │ │ ├── index.js │ │ ├── timezone_controller.js │ │ └── turbo_modal_controller.js ├── models │ └── application_record.rb ├── processes │ └── processes │ │ ├── configuration.rb │ │ ├── confirm_order_on_payment_captured.rb │ │ ├── invoice_generation.rb │ │ ├── invoices │ │ └── money_splitter.rb │ │ ├── notify_payments_about_order_value.rb │ │ ├── release_payment_process.rb │ │ ├── reservation_process.rb │ │ ├── shipment_process.rb │ │ ├── sync_shipment_from_pricing.rb │ │ ├── three_plus_one_free.rb │ │ ├── total_order_value.rb │ │ ├── total_order_value_updated.rb │ │ └── welcome_message_process.rb ├── read_models │ ├── admin │ │ ├── arbre │ │ │ └── turbo_frame.rb │ │ ├── configuration.rb │ │ ├── name_store.rb │ │ ├── register_store.rb │ │ └── rendering │ │ │ ├── stores_edit.rb │ │ │ ├── stores_index.rb │ │ │ └── stores_new.rb │ ├── availability │ │ └── configuration.rb │ ├── client_authentication │ │ ├── configuration.rb │ │ ├── create_account.rb │ │ └── set_password.rb │ ├── client_inbox │ │ ├── configuration.rb │ │ └── rendering │ │ │ └── inbox_list.rb │ ├── client_orders │ │ ├── add_item_to_order.rb │ │ ├── configuration.rb │ │ ├── create_customer.rb │ │ ├── order_handlers.rb │ │ ├── product_handlers.rb │ │ ├── remove_item_from_order.rb │ │ └── rendering │ │ │ ├── edit_order.rb │ │ │ ├── orders_list.rb │ │ │ └── show_order.rb │ ├── coupons │ │ ├── configuration.rb │ │ └── register_coupon.rb │ ├── customers │ │ ├── assign_store_to_customer.rb │ │ ├── configuration.rb │ │ ├── connect_account.rb │ │ ├── promote_to_vip.rb │ │ ├── register_customer.rb │ │ └── update_paid_orders_summary.rb │ ├── invoices │ │ ├── configuration.rb │ │ ├── create_invoice_item.rb │ │ ├── mark_as_issued.rb │ │ ├── mark_order_placed.rb │ │ ├── set_billing_address.rb │ │ └── set_payment_date.rb │ ├── orders │ │ ├── add_item_to_order.rb │ │ ├── assign_customer_to_order.rb │ │ ├── assign_store_to_order.rb │ │ ├── broadcaster.rb │ │ ├── cancel_order.rb │ │ ├── change_product_name.rb │ │ ├── change_product_price.rb │ │ ├── configuration.rb │ │ ├── confirm_order.rb │ │ ├── create_customer.rb │ │ ├── draft_order.rb │ │ ├── expire_order.rb │ │ ├── register_product.rb │ │ ├── remove_discount.rb │ │ ├── remove_item_from_order.rb │ │ ├── remove_time_promotion_discount.rb │ │ ├── submit_order.rb │ │ ├── update_discount.rb │ │ ├── update_order_total_value.rb │ │ └── update_time_promotion_discount_value.rb │ ├── products │ │ ├── configuration.rb │ │ └── refresh_future_prices_calendar.rb │ ├── public_offer │ │ ├── configuration.rb │ │ ├── product.rb │ │ └── register_lowest_price.rb │ ├── returns │ │ ├── add_item_to_return.rb │ │ ├── configuration.rb │ │ ├── create_draft_return.rb │ │ └── remove_item_from_return.rb │ ├── shipments │ │ ├── add_item_to_shipment.rb │ │ ├── configuration.rb │ │ ├── mark_order_placed.rb │ │ ├── remove_item_from_shipment.rb │ │ └── set_shipping_address.rb │ ├── single_table_read_model.rb │ ├── time_promotions │ │ ├── broadcaster.rb │ │ ├── configuration.rb │ │ └── create_time_promotion.rb │ └── vat_rates │ │ ├── add_available_vat_rate.rb │ │ ├── configuration.rb │ │ └── remove_available_vat_rate.rb ├── services │ ├── client │ │ └── orders │ │ │ └── submit_service.rb │ └── orders │ │ └── submit_service.rb └── views │ ├── application │ ├── _client_top_navigation.html.erb │ ├── _footer.html.erb │ ├── _top_navigation.html.erb │ └── _tracking.html.erb │ ├── available_vat_rates │ ├── index.html.erb │ └── new.html.erb │ ├── billing_addresses │ └── edit.erb │ ├── coupons │ ├── index.html.erb │ └── new.html.erb │ ├── customers │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── invoices │ └── show.html.erb │ ├── kaminari │ ├── _gap.html.erb │ ├── _next_page.html.erb │ ├── _page.html.erb │ ├── _paginator.html.erb │ └── _prev_page.html.erb │ ├── layouts │ ├── application.html.erb │ └── client_panel.erb │ ├── orders │ ├── edit.html.erb │ ├── edit_discount.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── products │ ├── _future_price.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── returns │ └── edit.html.erb │ ├── shipments │ ├── index.html.erb │ └── show.html.erb │ ├── shipping_addresses │ └── edit.html.erb │ ├── supplies │ └── new.html.erb │ └── time_promotions │ ├── index.html.erb │ └── new.html.erb ├── bin ├── bundle ├── dev ├── importmap ├── puma ├── pumactl ├── rails ├── rake ├── reset_heroku_db.sh └── setup ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── importmap.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 │ ├── permissions_policy.rb │ ├── rails_event_store.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── secrets.yml ├── sidekiq.yml └── tailwind.config.js ├── db ├── migrate │ ├── 20150429224522_create_orders.rb │ ├── 20150429224621_create_order_lines.rb │ ├── 20150429224628_create_customers.rb │ ├── 20150429224746_create_products.rb │ ├── 20181102132612_create_event_store_events.rb │ ├── 20181123154324_index_by_event_type.rb │ ├── 20181123155503_limit_for_event_id.rb │ ├── 20181207145051_binary_data_and_metadata.rb │ ├── 20210102110315_harmonize_schema.rb │ ├── 20210102182818_binary_to_jsonb.rb │ ├── 20210103114304_created_at_precision.rb │ ├── 20210103114309_add_valid_at.rb │ ├── 20210103114314_no_global_stream_entries.rb │ ├── 20210103114315_add_foreign_key_constraint_to_active_storage_attachments_for_blob_id.active_storage.rb │ ├── 20210306222803_create_active_admin_comments.rb │ ├── 20210318093812_disable_pg_crypto.rb │ ├── 20210505162028_add_price_to_products.rb │ ├── 20210505163254_add_price_to_order_lines.rb │ ├── 20210617230722_add_uid_to_product.rb │ ├── 20210626171021_add_uid_to_customer.rb │ ├── 20210626210851_migrate_from_id_to_uuid.rb │ ├── 20210719172643_add_discount_and_total_value_and_discount_value_to_orders.rb │ ├── 20210824130811_add_stock_level_to_product.rb │ ├── 20210830164940_drop_active_admin_comments.rb │ ├── 20210907115224_string_to_native_uuids.rb │ ├── 20210916191138_customers_add_registered_at.rb │ ├── 20210918000940_products_add_registered_at.rb │ ├── 20210918003625_products_drop_timestamps.rb │ ├── 20211003170051_create_shipments.rb │ ├── 20211116135113_create_products_in_orders_read_model.rb │ ├── 20211116154857_create_customers_in_orders_read_model.rb │ ├── 20211124220955_add_vat_rate_code_to_product.rb │ ├── 20220109162627_create_invoice_read_model.rb │ ├── 20220109175702_create_orders_in_invoices_read_model.rb │ ├── 20220109175753_create_orders_in_shipments_read_model.rb │ ├── 20220121131334_add_vip_to_customer.rb │ ├── 20220219130650_create_clients.rb │ ├── 20220219162101_create_client_orders.rb │ ├── 20220519094635_create_coupons.rb │ ├── 20220528213429_create_happy_hours.rb │ ├── 20220607201447_add_happy_hour_value_to_orders.rb │ ├── 20220703122711_drop_happy_hours.rb │ ├── 20220703123059_create_time_promotions.rb │ ├── 20220703133325_add_active_to_time_promotions.rb │ ├── 20220703133431_add_unique_constraint_on_code_on_time_promotions.rb │ ├── 20220723133454_remove_code_column_from_time_promotions.rb │ ├── 20220829155333_create_public_offer_products.rb │ ├── 20221104111403_create_client_order_lines_read_model.rb │ ├── 20221104152434_create_client_order_products_read_model.rb │ ├── 20221107085656_add_client_column_to_order.rb │ ├── 20221109141019_fix_client_order_lines_product_id_column_type.rb │ ├── 20221109150819_add_values_to_client_order.rb │ ├── 20221124200914_add_prices_chart_to_product.rb │ ├── 20221208185429_rename_future_prices_column.rb │ ├── 20221214202855_add_uniq_uid_index_to_orders_order.rb │ ├── 20221215214459_rename_future_prices_calendar_future_prices_calendar.rb │ ├── 20221216113438_add_order_total_value_updated_at_to_orders_table.rb │ ├── 20221216115301_add_discount_updated_at_to_orders_table.rb │ ├── 20230110235838_add_lowest_recent_price_to_client_order_products.rb │ ├── 20230118170447_create_availability_products.rb │ ├── 20230123202350_add_paid_products_summary_to_clients.rb │ ├── 20230124134558_add_paid_products_summary_to_customers.rb │ ├── 20230124195547_remove_price_column_from_products.rb │ ├── 20230126174907_add_accounting_column_to_customer.rb │ ├── 20230127125135_create_table_accounts.rb │ ├── 20230128110104_move_lowest_recent_price_to_public_offer.rb │ ├── 20230130172454_rename_accounts_table.rb │ ├── 20230130172623_add_account_id_to_accounts.rb │ ├── 20230202175228_remove_lowest_recent_price_from_client_order_product.rb │ ├── 20230906105023_add_event_id_index_to_event_store_events_in_streams.rb │ ├── 20230906105317_add_foreign_key_on_event_id_to_event_store_events_in_streams.rb │ ├── 20230906105318_validate_add_foreign_key_on_event_id_to_event_store_events_in_streams.rb │ ├── 20240812080357_create_available_vat_rates.rb │ ├── 20240826132237_add_available_to_products.rb │ ├── 20240827090619_add_available_to_client_order_products.rb │ ├── 20241002130622_rename_happy_hour_value_to_time_promotion_discount_value.rb │ ├── 20241017115056_create_shipment_items.rb │ ├── 20241018113912_change_order_uid_to_uuid_in_shipments.rb │ ├── 20241129122521_add_time_promotion_discount_to_client_orders.rb │ ├── 20241209100544_create_refunds.rb │ ├── 20241209102208_create_refund_items.rb │ ├── 20250507182202_create_client_inbox_messages.rb │ ├── 20250908135920_rename_refunds_to_returns.rb │ ├── 20251013100204_create_admin_stores.rb │ ├── 20251015235753_add_store_id_to_products.rb │ ├── 20251016150053_add_store_id_to_public_offer_products.rb │ ├── 20251025144006_add_store_id_to_customers.rb │ └── 20251101151254_add_store_id_to_orders.rb ├── schema.rb └── seeds.rb ├── docker-compose.yml ├── lib ├── configuration.rb └── transformations │ ├── refund_to_return_event_mapper.rb │ └── symbolize_data_keys.rb ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── script └── big_picture.rb ├── test ├── admin │ └── stores_read_model_test.rb ├── availability │ └── update_availability_test.rb ├── ci_workflow_test.rb ├── client_authentication │ ├── create_test.rb │ └── set_password_test.rb ├── client_orders │ ├── customer_registered_test.rb │ ├── discount_test.rb │ ├── item_added_to_basket_test.rb │ ├── item_removed_from_basket_test.rb │ ├── order_cancelled_test.rb │ ├── order_expired_test.rb │ ├── order_line_test.rb │ ├── order_paid_test.rb │ ├── order_placed_test.rb │ ├── product_price_changed_test.rb │ ├── product_registered_test.rb │ ├── time_promotion_discount_test.rb │ ├── update_order_total_value_test.rb │ ├── update_paid_orders_summary_test.rb │ └── update_product_availability_test.rb ├── customers │ ├── assign_store_to_customer_test.rb │ ├── connect_account_test.rb │ ├── customer_promoted_to_vip_test.rb │ ├── facade_test.rb │ ├── register_customer_test.rb │ └── update_paid_orders_summary_test.rb ├── integration │ ├── admin_stores_test.rb │ ├── available_vat_rates_test.rb │ ├── client_inbox_test.rb │ ├── client_orders_test.rb │ ├── coupons_test.rb │ ├── customers_test.rb │ ├── discount_test.rb │ ├── login_test.rb │ ├── orders_test.rb │ ├── products_test.rb │ ├── public_offer_test.rb │ ├── returns_test.rb │ ├── routing_404_test.rb │ ├── shipments_test.rb │ ├── store_switching_test.rb │ ├── supplies_test.rb │ └── time_promotions_test.rb ├── invoices │ └── invoices_test.rb ├── orders │ ├── assign_customer_first_test.rb │ ├── assign_store_to_order_test.rb │ ├── broadcast_test.rb │ ├── customer_registered_test.rb │ ├── discount_test.rb │ ├── draft_order_test.rb │ ├── facade_test.rb │ ├── item_added_to_basket_test.rb │ ├── item_added_to_return_test.rb │ ├── item_removed_from_basket_test.rb │ ├── item_removed_from_return_test.rb │ ├── order_cancelled_test.rb │ ├── order_expired_test.rb │ ├── order_line_test.rb │ ├── order_paid_test.rb │ ├── order_placed_test.rb │ ├── product_price_changed_test.rb │ ├── register_product_test.rb │ ├── remove_time_promotion_discount_test.rb │ ├── update_order_total_value_test.rb │ └── update_time_promotion_discount_value_test.rb ├── processes │ ├── invoice_generation_test.rb │ ├── money_splitter_test.rb │ ├── order_confirmation_test.rb │ ├── order_item_invoicing_process_test.rb │ ├── release_payment_process_test.rb │ ├── reservation_process_test.rb │ ├── shipment_process_test.rb │ ├── three_plus_one_free_test.rb │ └── total_order_value_test.rb ├── products │ ├── facade_test.rb │ ├── product_test.rb │ └── update_future_prices_calenar_test.rb ├── public_offer │ ├── product_price_changed_test.rb │ └── product_test.rb ├── read_model_handler_test.rb ├── services │ ├── client │ │ └── orders │ │ │ └── submit_service_test.rb │ └── orders │ │ └── submit_service_test.rb ├── shipments │ ├── item_added_to_shipment_test.rb │ └── item_removed_from_shipment_test.rb ├── test_helper.rb ├── transformations │ ├── refund_to_return_event_mapper_integration_test.rb │ └── refund_to_return_event_mapper_test.rb └── vat_rates │ └── available_vat_rate_added_test.rb └── vendor └── javascript └── .keep /.github/workflows/_commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/_commit.yml -------------------------------------------------------------------------------- /.github/workflows/crm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/crm.yml -------------------------------------------------------------------------------- /.github/workflows/infra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/infra.yml -------------------------------------------------------------------------------- /.github/workflows/inventory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/inventory.yml -------------------------------------------------------------------------------- /.github/workflows/invoicing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/invoicing.yml -------------------------------------------------------------------------------- /.github/workflows/ordering.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/ordering.yml -------------------------------------------------------------------------------- /.github/workflows/payments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/payments.yml -------------------------------------------------------------------------------- /.github/workflows/pricing-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/pricing-coverage.yml -------------------------------------------------------------------------------- /.github/workflows/pricing-mutate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/pricing-mutate.yml -------------------------------------------------------------------------------- /.github/workflows/pricing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/pricing.yml -------------------------------------------------------------------------------- /.github/workflows/product_catalog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/product_catalog.yml -------------------------------------------------------------------------------- /.github/workflows/rails_application-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/rails_application-coverage.yml -------------------------------------------------------------------------------- /.github/workflows/rails_application-mutate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/rails_application-mutate.yml -------------------------------------------------------------------------------- /.github/workflows/rails_application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/rails_application.yml -------------------------------------------------------------------------------- /.github/workflows/shipping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/shipping.yml -------------------------------------------------------------------------------- /.github/workflows/stores.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/stores.yml -------------------------------------------------------------------------------- /.github/workflows/taxes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/taxes.yml -------------------------------------------------------------------------------- /.github/workflows/todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.github/workflows/todo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/README.md -------------------------------------------------------------------------------- /ecommerce/authentication/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/.mutant.yml -------------------------------------------------------------------------------- /ecommerce/authentication/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/Gemfile -------------------------------------------------------------------------------- /ecommerce/authentication/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/Gemfile.lock -------------------------------------------------------------------------------- /ecommerce/authentication/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/Makefile -------------------------------------------------------------------------------- /ecommerce/authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/README.md -------------------------------------------------------------------------------- /ecommerce/authentication/lib/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/lib/authentication.rb -------------------------------------------------------------------------------- /ecommerce/authentication/lib/authentication/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/lib/authentication/account.rb -------------------------------------------------------------------------------- /ecommerce/authentication/lib/authentication/account_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/lib/authentication/account_service.rb -------------------------------------------------------------------------------- /ecommerce/authentication/lib/authentication/commands/register_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/lib/authentication/commands/register_account.rb -------------------------------------------------------------------------------- /ecommerce/authentication/lib/authentication/commands/set_login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/lib/authentication/commands/set_login.rb -------------------------------------------------------------------------------- /ecommerce/authentication/lib/authentication/commands/set_password_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/lib/authentication/commands/set_password_hash.rb -------------------------------------------------------------------------------- /ecommerce/authentication/lib/authentication/events/account_registered.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/lib/authentication/events/account_registered.rb -------------------------------------------------------------------------------- /ecommerce/authentication/lib/authentication/events/login_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/lib/authentication/events/login_set.rb -------------------------------------------------------------------------------- /ecommerce/authentication/lib/authentication/events/password_hash_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/lib/authentication/events/password_hash_set.rb -------------------------------------------------------------------------------- /ecommerce/authentication/test/connect_account_to_client_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/test/connect_account_to_client_test.rb -------------------------------------------------------------------------------- /ecommerce/authentication/test/register_account_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/test/register_account_test.rb -------------------------------------------------------------------------------- /ecommerce/authentication/test/set_login_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/test/set_login_test.rb -------------------------------------------------------------------------------- /ecommerce/authentication/test/set_password_hash_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/test/set_password_hash_test.rb -------------------------------------------------------------------------------- /ecommerce/authentication/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/authentication/test/test_helper.rb -------------------------------------------------------------------------------- /ecommerce/communication/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/communication/.mutant.yml -------------------------------------------------------------------------------- /ecommerce/communication/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/communication/Gemfile -------------------------------------------------------------------------------- /ecommerce/communication/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/communication/Gemfile.lock -------------------------------------------------------------------------------- /ecommerce/communication/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/communication/Makefile -------------------------------------------------------------------------------- /ecommerce/communication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/communication/README.md -------------------------------------------------------------------------------- /ecommerce/communication/lib/communication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/communication/lib/communication.rb -------------------------------------------------------------------------------- /ecommerce/communication/test/sending_message_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/communication/test/sending_message_test.rb -------------------------------------------------------------------------------- /ecommerce/communication/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/communication/test/test_helper.rb -------------------------------------------------------------------------------- /ecommerce/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/configuration.rb -------------------------------------------------------------------------------- /ecommerce/crm/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/.mutant.yml -------------------------------------------------------------------------------- /ecommerce/crm/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/Gemfile -------------------------------------------------------------------------------- /ecommerce/crm/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/Gemfile.lock -------------------------------------------------------------------------------- /ecommerce/crm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/Makefile -------------------------------------------------------------------------------- /ecommerce/crm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/README.md -------------------------------------------------------------------------------- /ecommerce/crm/lib/crm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/lib/crm.rb -------------------------------------------------------------------------------- /ecommerce/crm/lib/crm/commands/assign_customer_to_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/lib/crm/commands/assign_customer_to_order.rb -------------------------------------------------------------------------------- /ecommerce/crm/lib/crm/commands/promote_customer_to_vip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/lib/crm/commands/promote_customer_to_vip.rb -------------------------------------------------------------------------------- /ecommerce/crm/lib/crm/commands/register_customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/lib/crm/commands/register_customer.rb -------------------------------------------------------------------------------- /ecommerce/crm/lib/crm/customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/lib/crm/customer.rb -------------------------------------------------------------------------------- /ecommerce/crm/lib/crm/customer_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/lib/crm/customer_service.rb -------------------------------------------------------------------------------- /ecommerce/crm/lib/crm/events/customer_assigned_to_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/lib/crm/events/customer_assigned_to_order.rb -------------------------------------------------------------------------------- /ecommerce/crm/lib/crm/events/customer_promoted_to_vip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/lib/crm/events/customer_promoted_to_vip.rb -------------------------------------------------------------------------------- /ecommerce/crm/lib/crm/events/customer_registered.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/lib/crm/events/customer_registered.rb -------------------------------------------------------------------------------- /ecommerce/crm/lib/crm/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/lib/crm/order.rb -------------------------------------------------------------------------------- /ecommerce/crm/lib/crm/order_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/lib/crm/order_service.rb -------------------------------------------------------------------------------- /ecommerce/crm/test/assign_customer_to_order_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/test/assign_customer_to_order_test.rb -------------------------------------------------------------------------------- /ecommerce/crm/test/promote_client_to_vip_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/test/promote_client_to_vip_test.rb -------------------------------------------------------------------------------- /ecommerce/crm/test/registration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/test/registration_test.rb -------------------------------------------------------------------------------- /ecommerce/crm/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/crm/test/test_helper.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/.mutant.yml -------------------------------------------------------------------------------- /ecommerce/fulfillment/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/Gemfile -------------------------------------------------------------------------------- /ecommerce/fulfillment/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/Gemfile.lock -------------------------------------------------------------------------------- /ecommerce/fulfillment/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/Makefile -------------------------------------------------------------------------------- /ecommerce/fulfillment/lib/fulfillment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/lib/fulfillment.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/lib/fulfillment/commands/cancel_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/lib/fulfillment/commands/cancel_order.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/lib/fulfillment/commands/confirm_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/lib/fulfillment/commands/confirm_order.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/lib/fulfillment/commands/register_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/lib/fulfillment/commands/register_order.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/lib/fulfillment/events/order_cancelled.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/lib/fulfillment/events/order_cancelled.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/lib/fulfillment/events/order_confirmed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/lib/fulfillment/events/order_confirmed.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/lib/fulfillment/events/order_registered.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/lib/fulfillment/events/order_registered.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/lib/fulfillment/fake_number_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/lib/fulfillment/fake_number_generator.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/lib/fulfillment/number_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/lib/fulfillment/number_generator.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/lib/fulfillment/on_cancel_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/lib/fulfillment/on_cancel_order.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/lib/fulfillment/on_confirm_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/lib/fulfillment/on_confirm_order.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/lib/fulfillment/on_register_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/lib/fulfillment/on_register_order.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/lib/fulfillment/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/lib/fulfillment/order.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/test/cancel_order_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/test/cancel_order_test.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/test/confirm_order_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/test/confirm_order_test.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/test/number_generator_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/test/number_generator_test.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/test/register_order_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/test/register_order_test.rb -------------------------------------------------------------------------------- /ecommerce/fulfillment/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/fulfillment/test/test_helper.rb -------------------------------------------------------------------------------- /ecommerce/inventory/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/.mutant.yml -------------------------------------------------------------------------------- /ecommerce/inventory/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/Gemfile -------------------------------------------------------------------------------- /ecommerce/inventory/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/Gemfile.lock -------------------------------------------------------------------------------- /ecommerce/inventory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/Makefile -------------------------------------------------------------------------------- /ecommerce/inventory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/README.md -------------------------------------------------------------------------------- /ecommerce/inventory/lib/inventory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/lib/inventory.rb -------------------------------------------------------------------------------- /ecommerce/inventory/lib/inventory/commands/dispatch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/lib/inventory/commands/dispatch.rb -------------------------------------------------------------------------------- /ecommerce/inventory/lib/inventory/commands/release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/lib/inventory/commands/release.rb -------------------------------------------------------------------------------- /ecommerce/inventory/lib/inventory/commands/reserve.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/lib/inventory/commands/reserve.rb -------------------------------------------------------------------------------- /ecommerce/inventory/lib/inventory/commands/supply.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/lib/inventory/commands/supply.rb -------------------------------------------------------------------------------- /ecommerce/inventory/lib/inventory/events/availability_changed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/lib/inventory/events/availability_changed.rb -------------------------------------------------------------------------------- /ecommerce/inventory/lib/inventory/events/stock_level_changed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/lib/inventory/events/stock_level_changed.rb -------------------------------------------------------------------------------- /ecommerce/inventory/lib/inventory/events/stock_released.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/lib/inventory/events/stock_released.rb -------------------------------------------------------------------------------- /ecommerce/inventory/lib/inventory/events/stock_reserved.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/lib/inventory/events/stock_reserved.rb -------------------------------------------------------------------------------- /ecommerce/inventory/lib/inventory/inventory_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/lib/inventory/inventory_entry.rb -------------------------------------------------------------------------------- /ecommerce/inventory/lib/inventory/inventory_entry_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/lib/inventory/inventory_entry_service.rb -------------------------------------------------------------------------------- /ecommerce/inventory/test/dispatch_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/test/dispatch_test.rb -------------------------------------------------------------------------------- /ecommerce/inventory/test/release_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/test/release_test.rb -------------------------------------------------------------------------------- /ecommerce/inventory/test/reserve_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/test/reserve_test.rb -------------------------------------------------------------------------------- /ecommerce/inventory/test/supply_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/test/supply_test.rb -------------------------------------------------------------------------------- /ecommerce/inventory/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/inventory/test/test_helper.rb -------------------------------------------------------------------------------- /ecommerce/invoicing/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/.mutant.yml -------------------------------------------------------------------------------- /ecommerce/invoicing/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/Gemfile -------------------------------------------------------------------------------- /ecommerce/invoicing/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/Gemfile.lock -------------------------------------------------------------------------------- /ecommerce/invoicing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/Makefile -------------------------------------------------------------------------------- /ecommerce/invoicing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/README.md -------------------------------------------------------------------------------- /ecommerce/invoicing/lib/invoicing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/lib/invoicing.rb -------------------------------------------------------------------------------- /ecommerce/invoicing/lib/invoicing/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/lib/invoicing/commands.rb -------------------------------------------------------------------------------- /ecommerce/invoicing/lib/invoicing/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/lib/invoicing/events.rb -------------------------------------------------------------------------------- /ecommerce/invoicing/lib/invoicing/invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/lib/invoicing/invoice.rb -------------------------------------------------------------------------------- /ecommerce/invoicing/lib/invoicing/invoice_item_title_catalog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/lib/invoicing/invoice_item_title_catalog.rb -------------------------------------------------------------------------------- /ecommerce/invoicing/lib/invoicing/invoice_number_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/lib/invoicing/invoice_number_generator.rb -------------------------------------------------------------------------------- /ecommerce/invoicing/lib/invoicing/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/lib/invoicing/product.rb -------------------------------------------------------------------------------- /ecommerce/invoicing/lib/invoicing/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/lib/invoicing/services.rb -------------------------------------------------------------------------------- /ecommerce/invoicing/test/fake_concurrent_invoice_number_generator_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/test/fake_concurrent_invoice_number_generator_test.rb -------------------------------------------------------------------------------- /ecommerce/invoicing/test/invoice_item_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/test/invoice_item_test.rb -------------------------------------------------------------------------------- /ecommerce/invoicing/test/invoice_number_generator_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/test/invoice_number_generator_test.rb -------------------------------------------------------------------------------- /ecommerce/invoicing/test/invoice_service_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/test/invoice_service_test.rb -------------------------------------------------------------------------------- /ecommerce/invoicing/test/setting_product_displayed_name_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/test/setting_product_displayed_name_test.rb -------------------------------------------------------------------------------- /ecommerce/invoicing/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/invoicing/test/test_helper.rb -------------------------------------------------------------------------------- /ecommerce/ordering/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/.mutant.yml -------------------------------------------------------------------------------- /ecommerce/ordering/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/Gemfile -------------------------------------------------------------------------------- /ecommerce/ordering/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/Gemfile.lock -------------------------------------------------------------------------------- /ecommerce/ordering/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/Makefile -------------------------------------------------------------------------------- /ecommerce/ordering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/README.md -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/commands/add_item_to_refund.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/commands/add_item_to_refund.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/commands/add_item_to_return.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/commands/add_item_to_return.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/commands/create_draft_refund.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/commands/create_draft_refund.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/commands/create_draft_return.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/commands/create_draft_return.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/commands/remove_item_from_refund.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/commands/remove_item_from_refund.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/commands/remove_item_from_return.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/commands/remove_item_from_return.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/events/draft_refund_created.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/events/draft_refund_created.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/events/draft_return_created.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/events/draft_return_created.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/events/item_added_to_refund.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/events/item_added_to_refund.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/events/item_added_to_return.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/events/item_added_to_return.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/events/item_removed_from_refund.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/events/item_removed_from_refund.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/events/item_removed_from_return.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/events/item_removed_from_return.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/refund.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/refund.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/refundable_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/refundable_products.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/return.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/return.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/returnable_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/returnable_products.rb -------------------------------------------------------------------------------- /ecommerce/ordering/lib/ordering/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/lib/ordering/service.rb -------------------------------------------------------------------------------- /ecommerce/ordering/test/add_item_to_return_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/test/add_item_to_return_test.rb -------------------------------------------------------------------------------- /ecommerce/ordering/test/create_draft_return_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/test/create_draft_return_test.rb -------------------------------------------------------------------------------- /ecommerce/ordering/test/remove_item_from_return_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/test/remove_item_from_return_test.rb -------------------------------------------------------------------------------- /ecommerce/ordering/test/return_items_list_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/test/return_items_list_test.rb -------------------------------------------------------------------------------- /ecommerce/ordering/test/returnable_products_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/test/returnable_products_test.rb -------------------------------------------------------------------------------- /ecommerce/ordering/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/ordering/test/test_helper.rb -------------------------------------------------------------------------------- /ecommerce/payments/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/.mutant.yml -------------------------------------------------------------------------------- /ecommerce/payments/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/Gemfile -------------------------------------------------------------------------------- /ecommerce/payments/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/Gemfile.lock -------------------------------------------------------------------------------- /ecommerce/payments/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/Makefile -------------------------------------------------------------------------------- /ecommerce/payments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/README.md -------------------------------------------------------------------------------- /ecommerce/payments/lib/payments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/lib/payments.rb -------------------------------------------------------------------------------- /ecommerce/payments/lib/payments/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/lib/payments/commands.rb -------------------------------------------------------------------------------- /ecommerce/payments/lib/payments/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/lib/payments/events.rb -------------------------------------------------------------------------------- /ecommerce/payments/lib/payments/fake_gateway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/lib/payments/fake_gateway.rb -------------------------------------------------------------------------------- /ecommerce/payments/lib/payments/on_authorize_payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/lib/payments/on_authorize_payment.rb -------------------------------------------------------------------------------- /ecommerce/payments/lib/payments/on_capture_payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/lib/payments/on_capture_payment.rb -------------------------------------------------------------------------------- /ecommerce/payments/lib/payments/on_release_payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/lib/payments/on_release_payment.rb -------------------------------------------------------------------------------- /ecommerce/payments/lib/payments/on_set_payment_amount.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/lib/payments/on_set_payment_amount.rb -------------------------------------------------------------------------------- /ecommerce/payments/lib/payments/payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/lib/payments/payment.rb -------------------------------------------------------------------------------- /ecommerce/payments/test/fake_gateway_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/test/fake_gateway_test.rb -------------------------------------------------------------------------------- /ecommerce/payments/test/on_capture_payment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/test/on_capture_payment_test.rb -------------------------------------------------------------------------------- /ecommerce/payments/test/on_release_payment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/test/on_release_payment_test.rb -------------------------------------------------------------------------------- /ecommerce/payments/test/payment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/test/payment_test.rb -------------------------------------------------------------------------------- /ecommerce/payments/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/payments/test/test_helper.rb -------------------------------------------------------------------------------- /ecommerce/pricing/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/.mutant.yml -------------------------------------------------------------------------------- /ecommerce/pricing/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/Gemfile -------------------------------------------------------------------------------- /ecommerce/pricing/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/Gemfile.lock -------------------------------------------------------------------------------- /ecommerce/pricing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/Makefile -------------------------------------------------------------------------------- /ecommerce/pricing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/README.md -------------------------------------------------------------------------------- /ecommerce/pricing/lib/pricing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/lib/pricing.rb -------------------------------------------------------------------------------- /ecommerce/pricing/lib/pricing/apply_time_promotion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/lib/pricing/apply_time_promotion.rb -------------------------------------------------------------------------------- /ecommerce/pricing/lib/pricing/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/lib/pricing/commands.rb -------------------------------------------------------------------------------- /ecommerce/pricing/lib/pricing/coupon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/lib/pricing/coupon.rb -------------------------------------------------------------------------------- /ecommerce/pricing/lib/pricing/discounts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/lib/pricing/discounts.rb -------------------------------------------------------------------------------- /ecommerce/pricing/lib/pricing/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/lib/pricing/events.rb -------------------------------------------------------------------------------- /ecommerce/pricing/lib/pricing/offer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/lib/pricing/offer.rb -------------------------------------------------------------------------------- /ecommerce/pricing/lib/pricing/price_change.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/lib/pricing/price_change.rb -------------------------------------------------------------------------------- /ecommerce/pricing/lib/pricing/promotions_calendar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/lib/pricing/promotions_calendar.rb -------------------------------------------------------------------------------- /ecommerce/pricing/lib/pricing/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/lib/pricing/services.rb -------------------------------------------------------------------------------- /ecommerce/pricing/lib/pricing/time_promotion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/lib/pricing/time_promotion.rb -------------------------------------------------------------------------------- /ecommerce/pricing/test/apply_time_promotion_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/test/apply_time_promotion_test.rb -------------------------------------------------------------------------------- /ecommerce/pricing/test/coupons_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/test/coupons_test.rb -------------------------------------------------------------------------------- /ecommerce/pricing/test/discounts_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/test/discounts_test.rb -------------------------------------------------------------------------------- /ecommerce/pricing/test/draft_offer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/test/draft_offer_test.rb -------------------------------------------------------------------------------- /ecommerce/pricing/test/free_products_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/test/free_products_test.rb -------------------------------------------------------------------------------- /ecommerce/pricing/test/offer_lifecycle_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/test/offer_lifecycle_test.rb -------------------------------------------------------------------------------- /ecommerce/pricing/test/pricing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/test/pricing_test.rb -------------------------------------------------------------------------------- /ecommerce/pricing/test/product_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/test/product_test.rb -------------------------------------------------------------------------------- /ecommerce/pricing/test/promotions_calendar_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/test/promotions_calendar_test.rb -------------------------------------------------------------------------------- /ecommerce/pricing/test/simple_offer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/test/simple_offer_test.rb -------------------------------------------------------------------------------- /ecommerce/pricing/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/test/test_helper.rb -------------------------------------------------------------------------------- /ecommerce/pricing/test/time_promotion_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/test/time_promotion_test.rb -------------------------------------------------------------------------------- /ecommerce/pricing/test/use_coupon_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/pricing/test/use_coupon_test.rb -------------------------------------------------------------------------------- /ecommerce/product_catalog/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/product_catalog/.mutant.yml -------------------------------------------------------------------------------- /ecommerce/product_catalog/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/product_catalog/Gemfile -------------------------------------------------------------------------------- /ecommerce/product_catalog/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/product_catalog/Gemfile.lock -------------------------------------------------------------------------------- /ecommerce/product_catalog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/product_catalog/Makefile -------------------------------------------------------------------------------- /ecommerce/product_catalog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/product_catalog/README.md -------------------------------------------------------------------------------- /ecommerce/product_catalog/lib/product_catalog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/product_catalog/lib/product_catalog.rb -------------------------------------------------------------------------------- /ecommerce/product_catalog/lib/product_catalog/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/product_catalog/lib/product_catalog/commands.rb -------------------------------------------------------------------------------- /ecommerce/product_catalog/lib/product_catalog/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/product_catalog/lib/product_catalog/events.rb -------------------------------------------------------------------------------- /ecommerce/product_catalog/lib/product_catalog/naming.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/product_catalog/lib/product_catalog/naming.rb -------------------------------------------------------------------------------- /ecommerce/product_catalog/lib/product_catalog/registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/product_catalog/lib/product_catalog/registration.rb -------------------------------------------------------------------------------- /ecommerce/product_catalog/test/naming_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/product_catalog/test/naming_test.rb -------------------------------------------------------------------------------- /ecommerce/product_catalog/test/registration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/product_catalog/test/registration_test.rb -------------------------------------------------------------------------------- /ecommerce/product_catalog/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/product_catalog/test/test_helper.rb -------------------------------------------------------------------------------- /ecommerce/shipping/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/.mutant.yml -------------------------------------------------------------------------------- /ecommerce/shipping/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/Gemfile -------------------------------------------------------------------------------- /ecommerce/shipping/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/Gemfile.lock -------------------------------------------------------------------------------- /ecommerce/shipping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/Makefile -------------------------------------------------------------------------------- /ecommerce/shipping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/README.md -------------------------------------------------------------------------------- /ecommerce/shipping/lib/shipping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/lib/shipping.rb -------------------------------------------------------------------------------- /ecommerce/shipping/lib/shipping/commands/add_shipping_address_to_shipment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/lib/shipping/commands/add_shipping_address_to_shipment.rb -------------------------------------------------------------------------------- /ecommerce/shipping/lib/shipping/commands/authorize_shipment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/lib/shipping/commands/authorize_shipment.rb -------------------------------------------------------------------------------- /ecommerce/shipping/lib/shipping/commands/submit_shipment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/lib/shipping/commands/submit_shipment.rb -------------------------------------------------------------------------------- /ecommerce/shipping/lib/shipping/events/shipment_authorized.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/lib/shipping/events/shipment_authorized.rb -------------------------------------------------------------------------------- /ecommerce/shipping/lib/shipping/events/shipment_submitted.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/lib/shipping/events/shipment_submitted.rb -------------------------------------------------------------------------------- /ecommerce/shipping/lib/shipping/events/shipping_address_added_to_shipment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/lib/shipping/events/shipping_address_added_to_shipment.rb -------------------------------------------------------------------------------- /ecommerce/shipping/lib/shipping/picking_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/lib/shipping/picking_list.rb -------------------------------------------------------------------------------- /ecommerce/shipping/lib/shipping/picking_list_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/lib/shipping/picking_list_item.rb -------------------------------------------------------------------------------- /ecommerce/shipping/lib/shipping/services/on_authorize_shipment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/lib/shipping/services/on_authorize_shipment.rb -------------------------------------------------------------------------------- /ecommerce/shipping/lib/shipping/services/on_submit_shipment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/lib/shipping/services/on_submit_shipment.rb -------------------------------------------------------------------------------- /ecommerce/shipping/lib/shipping/shipment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/lib/shipping/shipment.rb -------------------------------------------------------------------------------- /ecommerce/shipping/test/on_add_item_to_shipment_picking_list_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/test/on_add_item_to_shipment_picking_list_test.rb -------------------------------------------------------------------------------- /ecommerce/shipping/test/on_add_shipping_address_to_shipment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/test/on_add_shipping_address_to_shipment_test.rb -------------------------------------------------------------------------------- /ecommerce/shipping/test/on_authorize_shipment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/test/on_authorize_shipment_test.rb -------------------------------------------------------------------------------- /ecommerce/shipping/test/on_remove_item_from_shipment_picking_list_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/test/on_remove_item_from_shipment_picking_list_test.rb -------------------------------------------------------------------------------- /ecommerce/shipping/test/on_submit_shipment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/test/on_submit_shipment_test.rb -------------------------------------------------------------------------------- /ecommerce/shipping/test/picking_list_item_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/test/picking_list_item_test.rb -------------------------------------------------------------------------------- /ecommerce/shipping/test/picking_list_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/test/picking_list_test.rb -------------------------------------------------------------------------------- /ecommerce/shipping/test/shipment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/test/shipment_test.rb -------------------------------------------------------------------------------- /ecommerce/shipping/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/shipping/test/test_helper.rb -------------------------------------------------------------------------------- /ecommerce/stores/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/.mutant.yml -------------------------------------------------------------------------------- /ecommerce/stores/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/Gemfile -------------------------------------------------------------------------------- /ecommerce/stores/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/Gemfile.lock -------------------------------------------------------------------------------- /ecommerce/stores/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/Makefile -------------------------------------------------------------------------------- /ecommerce/stores/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/README.md -------------------------------------------------------------------------------- /ecommerce/stores/lib/stores.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/lib/stores.rb -------------------------------------------------------------------------------- /ecommerce/stores/lib/stores/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/lib/stores/commands.rb -------------------------------------------------------------------------------- /ecommerce/stores/lib/stores/customer_registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/lib/stores/customer_registration.rb -------------------------------------------------------------------------------- /ecommerce/stores/lib/stores/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/lib/stores/events.rb -------------------------------------------------------------------------------- /ecommerce/stores/lib/stores/naming.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/lib/stores/naming.rb -------------------------------------------------------------------------------- /ecommerce/stores/lib/stores/offer_registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/lib/stores/offer_registration.rb -------------------------------------------------------------------------------- /ecommerce/stores/lib/stores/product_registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/lib/stores/product_registration.rb -------------------------------------------------------------------------------- /ecommerce/stores/lib/stores/registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/lib/stores/registration.rb -------------------------------------------------------------------------------- /ecommerce/stores/lib/stores/store_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/lib/stores/store_name.rb -------------------------------------------------------------------------------- /ecommerce/stores/test/customer_registration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/test/customer_registration_test.rb -------------------------------------------------------------------------------- /ecommerce/stores/test/naming_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/test/naming_test.rb -------------------------------------------------------------------------------- /ecommerce/stores/test/offer_registration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/test/offer_registration_test.rb -------------------------------------------------------------------------------- /ecommerce/stores/test/product_registration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/test/product_registration_test.rb -------------------------------------------------------------------------------- /ecommerce/stores/test/registration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/test/registration_test.rb -------------------------------------------------------------------------------- /ecommerce/stores/test/store_name_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/test/store_name_test.rb -------------------------------------------------------------------------------- /ecommerce/stores/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/stores/test/test_helper.rb -------------------------------------------------------------------------------- /ecommerce/taxes/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/taxes/.mutant.yml -------------------------------------------------------------------------------- /ecommerce/taxes/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/taxes/Gemfile -------------------------------------------------------------------------------- /ecommerce/taxes/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/taxes/Gemfile.lock -------------------------------------------------------------------------------- /ecommerce/taxes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/taxes/Makefile -------------------------------------------------------------------------------- /ecommerce/taxes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/taxes/README.md -------------------------------------------------------------------------------- /ecommerce/taxes/lib/taxes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/taxes/lib/taxes.rb -------------------------------------------------------------------------------- /ecommerce/taxes/lib/taxes/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/taxes/lib/taxes/commands.rb -------------------------------------------------------------------------------- /ecommerce/taxes/lib/taxes/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/taxes/lib/taxes/events.rb -------------------------------------------------------------------------------- /ecommerce/taxes/lib/taxes/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/taxes/lib/taxes/product.rb -------------------------------------------------------------------------------- /ecommerce/taxes/lib/taxes/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/taxes/lib/taxes/services.rb -------------------------------------------------------------------------------- /ecommerce/taxes/lib/taxes/vat_rate_catalog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/taxes/lib/taxes/vat_rate_catalog.rb -------------------------------------------------------------------------------- /ecommerce/taxes/test/taxes_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/taxes/test/taxes_test.rb -------------------------------------------------------------------------------- /ecommerce/taxes/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/taxes/test/test_helper.rb -------------------------------------------------------------------------------- /ecommerce/taxes/test/vat_rate_catalog_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/taxes/test/vat_rate_catalog_test.rb -------------------------------------------------------------------------------- /ecommerce/todo/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/todo/.mutant.yml -------------------------------------------------------------------------------- /ecommerce/todo/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/todo/Gemfile -------------------------------------------------------------------------------- /ecommerce/todo/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/todo/Gemfile.lock -------------------------------------------------------------------------------- /ecommerce/todo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/todo/Makefile -------------------------------------------------------------------------------- /ecommerce/todo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/todo/README.md -------------------------------------------------------------------------------- /ecommerce/todo/lib/todo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/todo/lib/todo.rb -------------------------------------------------------------------------------- /ecommerce/todo/lib/todo/todo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/todo/lib/todo/todo.rb -------------------------------------------------------------------------------- /ecommerce/todo/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/todo/test/test_helper.rb -------------------------------------------------------------------------------- /ecommerce/todo/test/todo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/ecommerce/todo/test/todo_test.rb -------------------------------------------------------------------------------- /eventcatalog.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/eventcatalog.config.js -------------------------------------------------------------------------------- /hanami_application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/hanami_application/README.md -------------------------------------------------------------------------------- /infra/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/.mutant.yml -------------------------------------------------------------------------------- /infra/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/Gemfile -------------------------------------------------------------------------------- /infra/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/Gemfile.lock -------------------------------------------------------------------------------- /infra/Gemfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/Gemfile.test -------------------------------------------------------------------------------- /infra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/Makefile -------------------------------------------------------------------------------- /infra/infra.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/infra.gemspec -------------------------------------------------------------------------------- /infra/lib/infra.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/lib/infra.rb -------------------------------------------------------------------------------- /infra/lib/infra/aggregate_root_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/lib/infra/aggregate_root_repository.rb -------------------------------------------------------------------------------- /infra/lib/infra/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/lib/infra/command.rb -------------------------------------------------------------------------------- /infra/lib/infra/command_bus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/lib/infra/command_bus.rb -------------------------------------------------------------------------------- /infra/lib/infra/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/lib/infra/event.rb -------------------------------------------------------------------------------- /infra/lib/infra/event_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/lib/infra/event_store.rb -------------------------------------------------------------------------------- /infra/lib/infra/process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/lib/infra/process.rb -------------------------------------------------------------------------------- /infra/lib/infra/process_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/lib/infra/process_manager.rb -------------------------------------------------------------------------------- /infra/lib/infra/retry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/lib/infra/retry.rb -------------------------------------------------------------------------------- /infra/lib/infra/testing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/lib/infra/testing.rb -------------------------------------------------------------------------------- /infra/lib/infra/types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/lib/infra/types.rb -------------------------------------------------------------------------------- /infra/test/retry_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/test/retry_test.rb -------------------------------------------------------------------------------- /infra/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/test/test_helper.rb -------------------------------------------------------------------------------- /infra/test/vat_rate_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/infra/test/vat_rate_test.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/.dockerignore -------------------------------------------------------------------------------- /pricing_catalog_rails_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/.gitignore -------------------------------------------------------------------------------- /pricing_catalog_rails_app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/Dockerfile -------------------------------------------------------------------------------- /pricing_catalog_rails_app/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/Gemfile -------------------------------------------------------------------------------- /pricing_catalog_rails_app/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/Gemfile.lock -------------------------------------------------------------------------------- /pricing_catalog_rails_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/README.md -------------------------------------------------------------------------------- /pricing_catalog_rails_app/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/Rakefile -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/admin/read_models/admin_catalog/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/admin/read_models/admin_catalog/index.html.erb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/admin/register_product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/admin/register_product.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/assets/config/manifest.js -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/controllers/admin/catalog_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/controllers/admin/catalog_controller.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/controllers/catalog_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/controllers/catalog_controller.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/javascript/application.js -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/javascript/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/javascript/controllers/application.js -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/javascript/controllers/hello_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/javascript/controllers/hello_controller.js -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/jobs/application_job.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/models/application_record.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/bin/bundle -------------------------------------------------------------------------------- /pricing_catalog_rails_app/bin/docker-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/bin/docker-entrypoint -------------------------------------------------------------------------------- /pricing_catalog_rails_app/bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/bin/importmap -------------------------------------------------------------------------------- /pricing_catalog_rails_app/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/bin/rails -------------------------------------------------------------------------------- /pricing_catalog_rails_app/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/bin/rake -------------------------------------------------------------------------------- /pricing_catalog_rails_app/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/bin/setup -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config.ru -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/application.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/boot.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/cable.yml -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/credentials.yml.enc -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/database.yml -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/environment.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/environments/development.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/environments/production.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/environments/test.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/importmap.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/initializers/inflections.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/initializers/rails_event_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/initializers/rails_event_store.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/locales/en.yml -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/master.key: -------------------------------------------------------------------------------- 1 | c2400f761b119d3f092a64d00bad9fdc -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/puma.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/config/routes.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/db/migrate/20240201132941_enable_pg_crypto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/db/migrate/20240201132941_enable_pg_crypto.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/db/migrate/20240201133038_create_products_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/db/migrate/20240201133038_create_products_table.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/db/migrate/20240201154705_create_admin_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/db/migrate/20240201154705_create_admin_products.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/db/schema.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/db/seeds.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/public/404.html -------------------------------------------------------------------------------- /pricing_catalog_rails_app/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/public/422.html -------------------------------------------------------------------------------- /pricing_catalog_rails_app/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/public/500.html -------------------------------------------------------------------------------- /pricing_catalog_rails_app/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/public/robots.txt -------------------------------------------------------------------------------- /pricing_catalog_rails_app/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/test/application_system_test_case.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/test/channels/application_cable/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/test/channels/application_cable/connection_test.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/test/test_helper.rb -------------------------------------------------------------------------------- /pricing_catalog_rails_app/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/tmp/local_secret.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/pricing_catalog_rails_app/tmp/local_secret.txt -------------------------------------------------------------------------------- /pricing_catalog_rails_app/tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pricing_catalog_rails_app/vendor/javascript/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails_application/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/.env.development -------------------------------------------------------------------------------- /rails_application/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/.env.test -------------------------------------------------------------------------------- /rails_application/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/.gitignore -------------------------------------------------------------------------------- /rails_application/.mutant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/.mutant.yml -------------------------------------------------------------------------------- /rails_application/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/Gemfile -------------------------------------------------------------------------------- /rails_application/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/Gemfile.lock -------------------------------------------------------------------------------- /rails_application/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/Makefile -------------------------------------------------------------------------------- /rails_application/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/Procfile -------------------------------------------------------------------------------- /rails_application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/README.md -------------------------------------------------------------------------------- /rails_application/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/Rakefile -------------------------------------------------------------------------------- /rails_application/app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails_application/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/assets/config/manifest.js -------------------------------------------------------------------------------- /rails_application/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails_application/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /rails_application/app/assets/stylesheets/application.tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/assets/stylesheets/application.tailwind.css -------------------------------------------------------------------------------- /rails_application/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /rails_application/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /rails_application/app/client_panel/login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/client_panel/login.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/admin/stores_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/admin/stores_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/available_vat_rates_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/available_vat_rates_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/billing_addresses_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/billing_addresses_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/client/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/client/base_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/client/clients_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/client/clients_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/client/inbox_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/client/inbox_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/client/orders_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/client/orders_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/client/products_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/client/products_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/coupons_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/coupons_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/customers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/customers_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/events_catalog_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/events_catalog_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/invoices_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/invoices_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/orders_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/orders_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/product/future_price_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/product/future_price_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/products_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/products_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/returns_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/returns_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/shipments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/shipments_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/shipping_addresses_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/shipping_addresses_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/stores_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/stores_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/supplies_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/supplies_controller.rb -------------------------------------------------------------------------------- /rails_application/app/controllers/time_promotions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/controllers/time_promotions_controller.rb -------------------------------------------------------------------------------- /rails_application/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /rails_application/app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/javascript/application.js -------------------------------------------------------------------------------- /rails_application/app/javascript/channels/consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/javascript/channels/consumer.js -------------------------------------------------------------------------------- /rails_application/app/javascript/channels/index.js: -------------------------------------------------------------------------------- 1 | // Import all the channels to be used by Action Cable -------------------------------------------------------------------------------- /rails_application/app/javascript/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/javascript/controllers/application.js -------------------------------------------------------------------------------- /rails_application/app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /rails_application/app/javascript/controllers/timezone_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/javascript/controllers/timezone_controller.js -------------------------------------------------------------------------------- /rails_application/app/javascript/controllers/turbo_modal_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/javascript/controllers/turbo_modal_controller.js -------------------------------------------------------------------------------- /rails_application/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/models/application_record.rb -------------------------------------------------------------------------------- /rails_application/app/processes/processes/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/processes/processes/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/processes/processes/invoice_generation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/processes/processes/invoice_generation.rb -------------------------------------------------------------------------------- /rails_application/app/processes/processes/invoices/money_splitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/processes/processes/invoices/money_splitter.rb -------------------------------------------------------------------------------- /rails_application/app/processes/processes/release_payment_process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/processes/processes/release_payment_process.rb -------------------------------------------------------------------------------- /rails_application/app/processes/processes/reservation_process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/processes/processes/reservation_process.rb -------------------------------------------------------------------------------- /rails_application/app/processes/processes/shipment_process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/processes/processes/shipment_process.rb -------------------------------------------------------------------------------- /rails_application/app/processes/processes/sync_shipment_from_pricing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/processes/processes/sync_shipment_from_pricing.rb -------------------------------------------------------------------------------- /rails_application/app/processes/processes/three_plus_one_free.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/processes/processes/three_plus_one_free.rb -------------------------------------------------------------------------------- /rails_application/app/processes/processes/total_order_value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/processes/processes/total_order_value.rb -------------------------------------------------------------------------------- /rails_application/app/processes/processes/total_order_value_updated.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/processes/processes/total_order_value_updated.rb -------------------------------------------------------------------------------- /rails_application/app/processes/processes/welcome_message_process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/processes/processes/welcome_message_process.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/admin/arbre/turbo_frame.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/admin/arbre/turbo_frame.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/admin/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/admin/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/admin/name_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/admin/name_store.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/admin/register_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/admin/register_store.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/admin/rendering/stores_edit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/admin/rendering/stores_edit.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/admin/rendering/stores_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/admin/rendering/stores_index.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/admin/rendering/stores_new.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/admin/rendering/stores_new.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/availability/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/availability/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/client_authentication/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/client_authentication/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/client_authentication/create_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/client_authentication/create_account.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/client_authentication/set_password.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/client_authentication/set_password.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/client_inbox/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/client_inbox/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/client_inbox/rendering/inbox_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/client_inbox/rendering/inbox_list.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/client_orders/add_item_to_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/client_orders/add_item_to_order.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/client_orders/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/client_orders/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/client_orders/create_customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/client_orders/create_customer.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/client_orders/order_handlers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/client_orders/order_handlers.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/client_orders/product_handlers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/client_orders/product_handlers.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/client_orders/remove_item_from_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/client_orders/remove_item_from_order.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/client_orders/rendering/edit_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/client_orders/rendering/edit_order.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/client_orders/rendering/orders_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/client_orders/rendering/orders_list.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/client_orders/rendering/show_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/client_orders/rendering/show_order.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/coupons/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/coupons/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/coupons/register_coupon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/coupons/register_coupon.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/customers/assign_store_to_customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/customers/assign_store_to_customer.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/customers/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/customers/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/customers/connect_account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/customers/connect_account.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/customers/promote_to_vip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/customers/promote_to_vip.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/customers/register_customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/customers/register_customer.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/customers/update_paid_orders_summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/customers/update_paid_orders_summary.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/invoices/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/invoices/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/invoices/create_invoice_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/invoices/create_invoice_item.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/invoices/mark_as_issued.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/invoices/mark_as_issued.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/invoices/mark_order_placed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/invoices/mark_order_placed.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/invoices/set_billing_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/invoices/set_billing_address.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/invoices/set_payment_date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/invoices/set_payment_date.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/add_item_to_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/add_item_to_order.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/assign_customer_to_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/assign_customer_to_order.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/assign_store_to_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/assign_store_to_order.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/broadcaster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/broadcaster.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/cancel_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/cancel_order.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/change_product_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/change_product_name.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/change_product_price.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/change_product_price.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/confirm_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/confirm_order.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/create_customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/create_customer.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/draft_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/draft_order.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/expire_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/expire_order.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/register_product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/register_product.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/remove_discount.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/remove_discount.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/remove_item_from_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/remove_item_from_order.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/submit_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/submit_order.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/update_discount.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/update_discount.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/orders/update_order_total_value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/orders/update_order_total_value.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/products/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/products/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/public_offer/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/public_offer/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/public_offer/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/public_offer/product.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/public_offer/register_lowest_price.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/public_offer/register_lowest_price.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/returns/add_item_to_return.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/returns/add_item_to_return.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/returns/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/returns/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/returns/create_draft_return.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/returns/create_draft_return.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/returns/remove_item_from_return.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/returns/remove_item_from_return.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/shipments/add_item_to_shipment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/shipments/add_item_to_shipment.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/shipments/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/shipments/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/shipments/mark_order_placed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/shipments/mark_order_placed.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/shipments/remove_item_from_shipment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/shipments/remove_item_from_shipment.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/shipments/set_shipping_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/shipments/set_shipping_address.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/single_table_read_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/single_table_read_model.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/time_promotions/broadcaster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/time_promotions/broadcaster.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/time_promotions/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/time_promotions/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/vat_rates/add_available_vat_rate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/vat_rates/add_available_vat_rate.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/vat_rates/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/vat_rates/configuration.rb -------------------------------------------------------------------------------- /rails_application/app/read_models/vat_rates/remove_available_vat_rate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/read_models/vat_rates/remove_available_vat_rate.rb -------------------------------------------------------------------------------- /rails_application/app/services/client/orders/submit_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/services/client/orders/submit_service.rb -------------------------------------------------------------------------------- /rails_application/app/services/orders/submit_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/services/orders/submit_service.rb -------------------------------------------------------------------------------- /rails_application/app/views/application/_client_top_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/application/_client_top_navigation.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/application/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/application/_footer.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/application/_top_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/application/_top_navigation.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/application/_tracking.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/application/_tracking.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/available_vat_rates/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/available_vat_rates/index.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/available_vat_rates/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/available_vat_rates/new.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/billing_addresses/edit.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/billing_addresses/edit.erb -------------------------------------------------------------------------------- /rails_application/app/views/coupons/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/coupons/index.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/coupons/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/coupons/new.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/customers/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/customers/index.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/customers/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/customers/new.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/customers/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/customers/show.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/invoices/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/invoices/show.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/kaminari/_gap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/kaminari/_gap.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/kaminari/_next_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/kaminari/_next_page.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/kaminari/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/kaminari/_page.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/kaminari/_paginator.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/kaminari/_paginator.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/kaminari/_prev_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/kaminari/_prev_page.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/layouts/client_panel.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/layouts/client_panel.erb -------------------------------------------------------------------------------- /rails_application/app/views/orders/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/orders/edit.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/orders/edit_discount.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/orders/edit_discount.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/orders/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/orders/index.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/orders/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/orders/new.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/orders/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/orders/show.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/products/_future_price.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/products/_future_price.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/products/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/products/edit.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/products/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/products/index.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/products/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/products/new.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/products/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/products/show.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/returns/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/returns/edit.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/shipments/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/shipments/index.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/shipments/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/shipments/show.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/shipping_addresses/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/shipping_addresses/edit.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/supplies/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/supplies/new.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/time_promotions/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/time_promotions/index.html.erb -------------------------------------------------------------------------------- /rails_application/app/views/time_promotions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/app/views/time_promotions/new.html.erb -------------------------------------------------------------------------------- /rails_application/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/bin/bundle -------------------------------------------------------------------------------- /rails_application/bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/bin/dev -------------------------------------------------------------------------------- /rails_application/bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/bin/importmap -------------------------------------------------------------------------------- /rails_application/bin/puma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/bin/puma -------------------------------------------------------------------------------- /rails_application/bin/pumactl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/bin/pumactl -------------------------------------------------------------------------------- /rails_application/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/bin/rails -------------------------------------------------------------------------------- /rails_application/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/bin/rake -------------------------------------------------------------------------------- /rails_application/bin/reset_heroku_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/bin/reset_heroku_db.sh -------------------------------------------------------------------------------- /rails_application/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/bin/setup -------------------------------------------------------------------------------- /rails_application/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config.ru -------------------------------------------------------------------------------- /rails_application/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/application.rb -------------------------------------------------------------------------------- /rails_application/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/boot.rb -------------------------------------------------------------------------------- /rails_application/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/cable.yml -------------------------------------------------------------------------------- /rails_application/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/credentials.yml.enc -------------------------------------------------------------------------------- /rails_application/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/database.yml -------------------------------------------------------------------------------- /rails_application/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/environment.rb -------------------------------------------------------------------------------- /rails_application/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/environments/development.rb -------------------------------------------------------------------------------- /rails_application/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/environments/production.rb -------------------------------------------------------------------------------- /rails_application/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/environments/test.rb -------------------------------------------------------------------------------- /rails_application/config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/importmap.rb -------------------------------------------------------------------------------- /rails_application/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /rails_application/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/initializers/assets.rb -------------------------------------------------------------------------------- /rails_application/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /rails_application/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /rails_application/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /rails_application/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /rails_application/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/initializers/inflections.rb -------------------------------------------------------------------------------- /rails_application/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /rails_application/config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /rails_application/config/initializers/rails_event_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/initializers/rails_event_store.rb -------------------------------------------------------------------------------- /rails_application/config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/initializers/session_store.rb -------------------------------------------------------------------------------- /rails_application/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /rails_application/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/locales/en.yml -------------------------------------------------------------------------------- /rails_application/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/puma.rb -------------------------------------------------------------------------------- /rails_application/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/routes.rb -------------------------------------------------------------------------------- /rails_application/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/secrets.yml -------------------------------------------------------------------------------- /rails_application/config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/sidekiq.yml -------------------------------------------------------------------------------- /rails_application/config/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/config/tailwind.config.js -------------------------------------------------------------------------------- /rails_application/db/migrate/20150429224522_create_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20150429224522_create_orders.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20150429224621_create_order_lines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20150429224621_create_order_lines.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20150429224628_create_customers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20150429224628_create_customers.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20150429224746_create_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20150429224746_create_products.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20181102132612_create_event_store_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20181102132612_create_event_store_events.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20181123154324_index_by_event_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20181123154324_index_by_event_type.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20181123155503_limit_for_event_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20181123155503_limit_for_event_id.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20181207145051_binary_data_and_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20181207145051_binary_data_and_metadata.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210102110315_harmonize_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210102110315_harmonize_schema.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210102182818_binary_to_jsonb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210102182818_binary_to_jsonb.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210103114304_created_at_precision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210103114304_created_at_precision.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210103114309_add_valid_at.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210103114309_add_valid_at.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210103114314_no_global_stream_entries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210103114314_no_global_stream_entries.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210318093812_disable_pg_crypto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210318093812_disable_pg_crypto.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210505162028_add_price_to_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210505162028_add_price_to_products.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210505163254_add_price_to_order_lines.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210505163254_add_price_to_order_lines.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210617230722_add_uid_to_product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210617230722_add_uid_to_product.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210626171021_add_uid_to_customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210626171021_add_uid_to_customer.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210626210851_migrate_from_id_to_uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210626210851_migrate_from_id_to_uuid.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210824130811_add_stock_level_to_product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210824130811_add_stock_level_to_product.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210830164940_drop_active_admin_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210830164940_drop_active_admin_comments.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210907115224_string_to_native_uuids.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210907115224_string_to_native_uuids.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210918000940_products_add_registered_at.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210918000940_products_add_registered_at.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20210918003625_products_drop_timestamps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20210918003625_products_drop_timestamps.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20211003170051_create_shipments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20211003170051_create_shipments.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20220109162627_create_invoice_read_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20220109162627_create_invoice_read_model.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20220121131334_add_vip_to_customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20220121131334_add_vip_to_customer.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20220219130650_create_clients.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20220219130650_create_clients.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20220219162101_create_client_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20220219162101_create_client_orders.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20220519094635_create_coupons.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20220519094635_create_coupons.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20220528213429_create_happy_hours.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20220528213429_create_happy_hours.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20220703122711_drop_happy_hours.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20220703122711_drop_happy_hours.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20220703123059_create_time_promotions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20220703123059_create_time_promotions.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20221107085656_add_client_column_to_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20221107085656_add_client_column_to_order.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20221109150819_add_values_to_client_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20221109150819_add_values_to_client_order.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20230127125135_create_table_accounts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20230127125135_create_table_accounts.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20230130172454_rename_accounts_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20230130172454_rename_accounts_table.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20230130172623_add_account_id_to_accounts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20230130172623_add_account_id_to_accounts.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20240812080357_create_available_vat_rates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20240812080357_create_available_vat_rates.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20240826132237_add_available_to_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20240826132237_add_available_to_products.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20241017115056_create_shipment_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20241017115056_create_shipment_items.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20241209100544_create_refunds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20241209100544_create_refunds.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20241209102208_create_refund_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20241209102208_create_refund_items.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20250908135920_rename_refunds_to_returns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20250908135920_rename_refunds_to_returns.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20251013100204_create_admin_stores.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20251013100204_create_admin_stores.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20251015235753_add_store_id_to_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20251015235753_add_store_id_to_products.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20251025144006_add_store_id_to_customers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20251025144006_add_store_id_to_customers.rb -------------------------------------------------------------------------------- /rails_application/db/migrate/20251101151254_add_store_id_to_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/migrate/20251101151254_add_store_id_to_orders.rb -------------------------------------------------------------------------------- /rails_application/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/schema.rb -------------------------------------------------------------------------------- /rails_application/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/db/seeds.rb -------------------------------------------------------------------------------- /rails_application/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/docker-compose.yml -------------------------------------------------------------------------------- /rails_application/lib/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/lib/configuration.rb -------------------------------------------------------------------------------- /rails_application/lib/transformations/refund_to_return_event_mapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/lib/transformations/refund_to_return_event_mapper.rb -------------------------------------------------------------------------------- /rails_application/lib/transformations/symbolize_data_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/lib/transformations/symbolize_data_keys.rb -------------------------------------------------------------------------------- /rails_application/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/public/404.html -------------------------------------------------------------------------------- /rails_application/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/public/422.html -------------------------------------------------------------------------------- /rails_application/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/public/500.html -------------------------------------------------------------------------------- /rails_application/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails_application/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails_application/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails_application/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/public/robots.txt -------------------------------------------------------------------------------- /rails_application/script/big_picture.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/script/big_picture.rb -------------------------------------------------------------------------------- /rails_application/test/admin/stores_read_model_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/admin/stores_read_model_test.rb -------------------------------------------------------------------------------- /rails_application/test/availability/update_availability_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/availability/update_availability_test.rb -------------------------------------------------------------------------------- /rails_application/test/ci_workflow_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/ci_workflow_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_authentication/create_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_authentication/create_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_authentication/set_password_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_authentication/set_password_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/customer_registered_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/customer_registered_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/discount_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/discount_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/item_added_to_basket_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/item_added_to_basket_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/item_removed_from_basket_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/item_removed_from_basket_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/order_cancelled_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/order_cancelled_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/order_expired_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/order_expired_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/order_line_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/order_line_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/order_paid_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/order_paid_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/order_placed_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/order_placed_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/product_price_changed_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/product_price_changed_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/product_registered_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/product_registered_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/time_promotion_discount_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/time_promotion_discount_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/update_order_total_value_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/update_order_total_value_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/update_paid_orders_summary_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/update_paid_orders_summary_test.rb -------------------------------------------------------------------------------- /rails_application/test/client_orders/update_product_availability_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/client_orders/update_product_availability_test.rb -------------------------------------------------------------------------------- /rails_application/test/customers/assign_store_to_customer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/customers/assign_store_to_customer_test.rb -------------------------------------------------------------------------------- /rails_application/test/customers/connect_account_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/customers/connect_account_test.rb -------------------------------------------------------------------------------- /rails_application/test/customers/customer_promoted_to_vip_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/customers/customer_promoted_to_vip_test.rb -------------------------------------------------------------------------------- /rails_application/test/customers/facade_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/customers/facade_test.rb -------------------------------------------------------------------------------- /rails_application/test/customers/register_customer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/customers/register_customer_test.rb -------------------------------------------------------------------------------- /rails_application/test/customers/update_paid_orders_summary_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/customers/update_paid_orders_summary_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/admin_stores_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/admin_stores_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/available_vat_rates_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/available_vat_rates_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/client_inbox_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/client_inbox_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/client_orders_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/client_orders_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/coupons_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/coupons_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/customers_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/customers_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/discount_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/discount_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/login_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/login_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/orders_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/orders_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/products_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/products_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/public_offer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/public_offer_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/returns_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/returns_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/routing_404_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/routing_404_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/shipments_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/shipments_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/store_switching_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/store_switching_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/supplies_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/supplies_test.rb -------------------------------------------------------------------------------- /rails_application/test/integration/time_promotions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/integration/time_promotions_test.rb -------------------------------------------------------------------------------- /rails_application/test/invoices/invoices_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/invoices/invoices_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/assign_customer_first_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/assign_customer_first_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/assign_store_to_order_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/assign_store_to_order_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/broadcast_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/broadcast_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/customer_registered_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/customer_registered_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/discount_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/discount_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/draft_order_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/draft_order_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/facade_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/facade_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/item_added_to_basket_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/item_added_to_basket_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/item_added_to_return_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/item_added_to_return_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/item_removed_from_basket_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/item_removed_from_basket_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/item_removed_from_return_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/item_removed_from_return_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/order_cancelled_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/order_cancelled_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/order_expired_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/order_expired_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/order_line_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/order_line_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/order_paid_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/order_paid_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/order_placed_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/order_placed_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/product_price_changed_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/product_price_changed_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/register_product_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/register_product_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/remove_time_promotion_discount_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/remove_time_promotion_discount_test.rb -------------------------------------------------------------------------------- /rails_application/test/orders/update_order_total_value_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/orders/update_order_total_value_test.rb -------------------------------------------------------------------------------- /rails_application/test/processes/invoice_generation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/processes/invoice_generation_test.rb -------------------------------------------------------------------------------- /rails_application/test/processes/money_splitter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/processes/money_splitter_test.rb -------------------------------------------------------------------------------- /rails_application/test/processes/order_confirmation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/processes/order_confirmation_test.rb -------------------------------------------------------------------------------- /rails_application/test/processes/order_item_invoicing_process_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/processes/order_item_invoicing_process_test.rb -------------------------------------------------------------------------------- /rails_application/test/processes/release_payment_process_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/processes/release_payment_process_test.rb -------------------------------------------------------------------------------- /rails_application/test/processes/reservation_process_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/processes/reservation_process_test.rb -------------------------------------------------------------------------------- /rails_application/test/processes/shipment_process_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/processes/shipment_process_test.rb -------------------------------------------------------------------------------- /rails_application/test/processes/three_plus_one_free_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/processes/three_plus_one_free_test.rb -------------------------------------------------------------------------------- /rails_application/test/processes/total_order_value_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/processes/total_order_value_test.rb -------------------------------------------------------------------------------- /rails_application/test/products/facade_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/products/facade_test.rb -------------------------------------------------------------------------------- /rails_application/test/products/product_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/products/product_test.rb -------------------------------------------------------------------------------- /rails_application/test/products/update_future_prices_calenar_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/products/update_future_prices_calenar_test.rb -------------------------------------------------------------------------------- /rails_application/test/public_offer/product_price_changed_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/public_offer/product_price_changed_test.rb -------------------------------------------------------------------------------- /rails_application/test/public_offer/product_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/public_offer/product_test.rb -------------------------------------------------------------------------------- /rails_application/test/read_model_handler_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/read_model_handler_test.rb -------------------------------------------------------------------------------- /rails_application/test/services/client/orders/submit_service_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/services/client/orders/submit_service_test.rb -------------------------------------------------------------------------------- /rails_application/test/services/orders/submit_service_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/services/orders/submit_service_test.rb -------------------------------------------------------------------------------- /rails_application/test/shipments/item_added_to_shipment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/shipments/item_added_to_shipment_test.rb -------------------------------------------------------------------------------- /rails_application/test/shipments/item_removed_from_shipment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/shipments/item_removed_from_shipment_test.rb -------------------------------------------------------------------------------- /rails_application/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/test_helper.rb -------------------------------------------------------------------------------- /rails_application/test/vat_rates/available_vat_rate_added_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RailsEventStore/ecommerce/HEAD/rails_application/test/vat_rates/available_vat_rate_added_test.rb -------------------------------------------------------------------------------- /rails_application/vendor/javascript/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------