Skip to content
Snippets Groups Projects
Select Git revision
  • d72e33574b377613567fd566927f17c974ef8909
  • main default protected
  • renovate/django-5.x
  • koma/feature/preference-polling-form
4 results

api.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    apps.py 908 B
    from django.utils.translation import gettext_lazy
    
    from . import __version__
    
    try:
        from pretix.base.plugins import PluginConfig
    except ImportError:
        raise RuntimeError("Please use pretix 2.7 or above to run this plugin!")
    
    
    class PluginApp(PluginConfig):
        name = "pretix_matrix_inviter"
        verbose_name = "pretix Matrix inviter"
    
        class PretixPluginMeta:
            name = gettext_lazy("Matrix inviter")
            author = "Felix Schäfer"
            description = gettext_lazy("Invite participants to a Matrix Room or Space.")
            visible = True
            version = __version__
            category = "FEATURE"
            compatibility = "pretix>=2.7.0"
            settings_links = [
                (
                    gettext_lazy("Matrix inviter"),
                    "plugins:pretix_matrix_inviter:settings",
                    {},
                ),
            ]
    
        def ready(self):
            from . import signals  # NOQA