debian-mirror-gitlab/app/models/users/credit_card_validation.rb

25 lines
631 B
Ruby
Raw Normal View History

2021-06-08 01:23:25 +05:30
# frozen_string_literal: true
module Users
class CreditCardValidation < ApplicationRecord
RELEASE_DAY = Date.new(2021, 5, 17)
self.table_name = 'user_credit_card_validations'
belongs_to :user
2021-11-18 22:05:49 +05:30
validates :holder_name, length: { maximum: 26 }
validates :last_digits, allow_nil: true, numericality: {
greater_than_or_equal_to: 0, less_than_or_equal_to: 9999
}
def similar_records
self.class.where(
expiration_date: expiration_date,
last_digits: last_digits,
holder_name: holder_name
).order(credit_card_validated_at: :desc).includes(:user)
end
2021-06-08 01:23:25 +05:30
end
end