podemos-info/participa2

View on GitHub
decidim-module-crowdfundings/app/models/census/api/payment_method_definitions.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require "active_support/concern"

module Census
  module API
    # Container module for Census API payment method constants
    module PaymentMethodDefinitions
      extend ActiveSupport::Concern

      TYPES = %w(existing_payment_method direct_debit credit_card_external).freeze
      STATUS = %w(incomplete active inactive).freeze
    end
  end
end