Class: Users::CreditCardValidation
- Inherits:
-
ApplicationRecord
- Object
- ActiveRecord::Base
- ApplicationRecord
- Users::CreditCardValidation
- Defined in:
- app/models/users/credit_card_validation.rb
Constant Summary collapse
- RELEASE_DAY =
Date.new(2021, 5, 17)
Constants inherited from ApplicationRecord
Instance Method Summary collapse
Methods inherited from ApplicationRecord
cached_column_list, #create_or_load_association, declarative_enum, default_select_columns, id_in, id_not_in, iid_in, pluck_primary_key, primary_key_in, #readable_by?, safe_ensure_unique, safe_find_or_create_by, safe_find_or_create_by!, #to_ability_name, underscore, where_exists, where_not_exists, with_fast_read_statement_timeout, without_order
Methods included from SensitiveSerializableHash
Instance Method Details
#similar_records ⇒ Object
17 18 19 20 21 22 23 |
# File 'app/models/users/credit_card_validation.rb', line 17 def similar_records self.class.where( expiration_date: expiration_date, last_digits: last_digits, network: network ).order(credit_card_validated_at: :desc).includes(:user) end |