mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
15 lines
321 B
Ruby
15 lines
321 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PermittedAttributes
|
|
class PaymentSource
|
|
def self.attributes
|
|
[
|
|
:gateway_payment_profile_id, :cc_type, :last_digits,
|
|
:month, :year, :first_name, :last_name,
|
|
:number, :verification_value,
|
|
:save_requested_by_customer
|
|
]
|
|
end
|
|
end
|
|
end
|