Class: Spree::Promotion::Rules::UserLoggedIn
- Inherits:
-
Spree::PromotionRule
- Object
- ActiveRecord::Base
- Base
- Spree::PromotionRule
- Spree::Promotion::Rules::UserLoggedIn
- Defined in:
- app/models/spree/promotion/rules/user_logged_in.rb
Instance Method Summary collapse
Methods inherited from Spree::PromotionRule
#actionable?, #eligibility_errors, #preload_relations, #to_partial_path
Methods inherited from Base
Methods included from Core::Permalinks
#generate_permalink, #save_permalink
Instance Method Details
#applicable?(promotable) ⇒ Boolean
7 8 9 |
# File 'app/models/spree/promotion/rules/user_logged_in.rb', line 7 def applicable?(promotable) promotable.is_a?(Spree::Order) end |
#eligible?(order, _options = {}) ⇒ Boolean
11 12 13 14 15 16 |
# File 'app/models/spree/promotion/rules/user_logged_in.rb', line 11 def eligible?(order, = {}) unless order.user.present? eligibility_errors.add(:base, (:no_user_specified), error_code: :no_user_specified) end eligibility_errors.empty? end |