spree_paypal_express/app/models/paypal_txn.rb

8 lines
210 B
Ruby

class PaypalTxn < Transaction
enumerable_constant :txn_type, :constants => [:authorize, :capture, :purchase, :void, :credit, :denied, :unknown]
def txn_type_name
TxnType.from_value(txn_type)
end
end