Class: Spree::Promotion::Rules::UserLoggedIn
Instance Method Summary
collapse
#actionable?, #eligibility_errors, #preload_relations, #to_partial_path
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, _options = {})
if order.user.blank?
eligibility_errors.add(:base, eligibility_error_message(:no_user_specified), error_code: :no_user_specified)
end
eligibility_errors.empty?
end
|