Add a dummy Stripe plugin for testing purposes

This commit is contained in:
Raphael Michel
2015-03-06 15:20:59 +01:00
parent 98f7f07c2e
commit 4390ee0b07
4 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from collections import OrderedDict
from django.utils.translation import ugettext_lazy as _
from django import forms
from pretix.base.payment import BasePaymentProvider
class Stripe(BasePaymentProvider):
identifier = 'stripe'
verbose_name = _('Credit Card via Stripe')
settings_form_fields = OrderedDict([
])