ror_ecommerce icon indicating copy to clipboard operation
ror_ecommerce copied to clipboard

Ruby on Rails Ecommerce platform, perfect for your small business solution.

Results 24 ror_ecommerce issues
Sort by recently updated
recently updated
newest added

Hi There, Did not see the issue, but the server at ror-e.herokuapp.com is down and not working.

my mistake, didn't notice that delegate is in use

https://github.com/drhenner/ror_ecommerce/blob/3db5a29000ac93d6b896469511004e450d019042/app/models/referral.rb#L10 with current validation code, I can create referrals with same email adrress with lowercase/uppercase as attached. ![image](https://user-images.githubusercontent.com/42279873/55834239-0e8f7400-5adf-11e9-9627-0697d4981ddb.png) I believe here should use `validates :email, presence: true, uniqueness: {case_sensitive: false},...

As per commit message. To fix issues https://github.com/drhenner/ror_ecommerce/issues/194 https://github.com/drhenner/ror_ecommerce/issues/195

As per commit message. To fix issues https://github.com/drhenner/ror_ecommerce/issues/193

app/controllers/application_controller.rb ``` 129 session_cart.cart_items.each do |item| 130 item.update_attribute(:user_id, user.id ) if item.user_id != user.id 131 end ``` replaced by update_all ``` session_cart.cart_items.where.not(user_id: user.id).update_all(user_id: user.id) ```

When rendering the products, link_to, image_tag and some other functions are used to generate corresponding label, however they might be expensive, and the contents generated actually have a lot of...

ror_ecommerce/app/views/admin/users/show.html.erb:22: # of Items