Jay
09/25/2022, 7:25 AMJay
09/25/2022, 7:24 AMM C
09/26/2022, 11:59 AMZachary Jones
09/26/2022, 11:15 PMsolidus_shipstation
gem, to know why the pending-shipments query scopes on the parent spree_order.updated_at
field , instead of on the spree_shipement.updated_at
?Test Account
09/27/2022, 7:43 AMuninitialized constant Spree::HomeController Did you mean? Spree::HomeControllerDecorator
when going to https://localhost:3000/marketplace --
# config/routes.rb
mount Spree::Core::Engine, at: "/marketplace"
get "/marketplace", to: "spree/home#index"
--
# rails routes
spree /marketplace Spree::Core::Engine
marketplace GET /marketplace(.:format) spree/home#index
Ali Hussain
09/27/2022, 11:26 AMSabo
09/27/2022, 5:04 PMsolidus_auth_devise/app/models/spree/*user.rb*
I know how to add or update functions (https://guides.solidus.io/developers/customizations/decorators) but how to remove some code like def function or call function ?Wladjmir
09/28/2022, 9:40 AMJay
09/28/2022, 5:59 PMconfig/storage.yml
digitalocean:
service: S3
endpoint: <https://sfo3.digitaloceanspaces.com>
access_key_id: <%= Rails.application.credentials.dig(:digitalocean, :access_key) %>
secret_access_key: <%= Rails.application.credentials.dig(:digitalocean, :secret) %>
bucket: bizdigitalspaces
public: true
region: unused
Jeison F. Poveda
09/29/2022, 12:10 AMJeison F. Poveda
09/29/2022, 5:11 AMMarie Lamoureux
09/29/2022, 9:20 AMbundle exec rails g solidus:views:override
and it gives me this error message Could not find generator 'solidus:views:override'.
I created the app with the following command:
rails new \
-d postgresql \
-j webpack \ solidus-test
bundle add solidus
bin/rails g solidus:install
I'm using Rails 7Slackbot
09/29/2022, 9:49 PMTyler Kocheff
09/30/2022, 9:26 PMSabo
10/03/2022, 6:31 AMNameError in Spree::UserSessionsController#create
Rails couldn't find a valid model for User association. Please provide the :class_name option on the association declaration. If :class_name is already provided, make sure it's an ActiveRecord::Base subclass.
Extracted source (around line #19):
authenticate_spree_user!
if spree_user_signed_in?
respond_to do |format|
format.html do
flash[:success] = I18n.t('spree.logged_in_succesfully')
app/controllers/spree/user_sessions_controller.rb:19:in `create'
Exception Causes
NameError: uninitialized constant Ahoy::Visit::User raise NameError.new("uninitialized constant #{candidates.first}", candidates.first) ^^^^^
There is not Ahoy::Visit::User
I guess the controller is looking for Spree::User
?
The issue :
https://github.com/ankane/ahoy/issues/513Manu
10/03/2022, 1:25 PMA token may not be passed in as a PaymentMethod. Instead, create a PaymentMethod or convert your token to a PaymentMethod by setting the `card[token]` parameter to ...
I don’t understand the explanation provided by this closed issues :
• https://github.com/solidusio/solidus_stripe/issues/131
• https://github.com/solidusio/solidus_stripe/issues/71#issuecomment-736282633
Why can’t we use both Elements V3 and Intents V3? Because if I only use Intents V3 my credit card form is systematically empty (no JS generated inputs). It looks like it needs Elements V3... Any help appreciated, thanks!Chirag Jain
10/04/2022, 10:51 AMgem install bundler:2.3.22
.""Leandro Bortolotto
10/04/2022, 4:19 PMLeandro Bortolotto
10/04/2022, 4:19 PMSabo
10/05/2022, 9:29 AMhas_and_belongs_to_many
but I would create a join table something like spree_discussions_products.discussion_id
if possible, it is possible to specify an other name for the columns with rails g migration CreateTableJoinSpreeProductSpreeDicussion ....
?Gustavo Alvarado
10/06/2022, 6:41 PMGustavo Alvarado
10/06/2022, 6:41 PMJared Norman
Wladjmir
10/06/2022, 7:32 PMTest Account
10/07/2022, 10:28 PMTest Account
10/07/2022, 10:30 PMTest Account
10/08/2022, 1:27 AMTest Account
10/08/2022, 1:32 AM/dating
that uses the same devise but includes a couple of extra fields (gender etc.) Solidus is intended to go to /marketplace
.Test Account
10/08/2022, 1:33 AMTest Account
10/08/2022, 1:35 AMSolidus requires amodel in order to take advantage of all its features. This model can have any name, and Solidus can integrate with your application's existing authentication system.User