mirror of
https://github.com/pretix/pretix-servicefees.git
synced 2024-11-14 02:54:21 +01:00
22 lines
603 B
Python
22 lines
603 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy
|
|
from . import __version__
|
|
|
|
|
|
class PluginApp(AppConfig):
|
|
name = 'pretix_servicefees'
|
|
verbose_name = 'Service Fees'
|
|
|
|
class PretixPluginMeta:
|
|
name = gettext_lazy('Service Fees')
|
|
author = 'Raphael Michel'
|
|
category = 'FEATURE'
|
|
description = gettext_lazy('This plugin allows to charge a service fee on all non-free orders.')
|
|
visible = True
|
|
version = __version__
|
|
compatibility = "pretix>=4.16.0"
|
|
|
|
def ready(self):
|
|
from . import signals # NOQA
|
|
|
|
|