diff options
author | Magnus Hagander | 2023-06-02 15:37:42 +0000 |
---|---|---|
committer | Magnus Hagander | 2023-06-02 15:37:42 +0000 |
commit | 01214a785959878f6d7dd835347819dbaa888ac1 (patch) | |
tree | 38337993b0bb5f4ad1ecab8587bec1d2af0697b0 /postgresqleu/settings.py | |
parent | 5a8a7681352a19fa81a97ff01f0ad87b1c36231d (diff) |
Add support for digital signature providers
This adds a new type of provider to the system for handling digital
signatures.
Initially the only consumer is conference sponsorships, but it could be
added for other parts of the system as well in the future. Regular
"old-style" sponsorship contracts are still supported, but will gain the
feature to auto-fill sponsor name and VAT number if wanted. The sponsor
signup workflow is adjusted to support either one or both of the two
methods.
Initially the only implementation is Signwell, but the system is made
pluggable just like e.g. the payment providers, so other suppliers can
be added in the future.
This should be considered fairly beta at this point, as several parts of
it cannot be fully tested until a production account is in place. But
the basics are there...
Diffstat (limited to 'postgresqleu/settings.py')
-rw-r--r-- | postgresqleu/settings.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/postgresqleu/settings.py b/postgresqleu/settings.py index c548d5c1..22957252 100644 --- a/postgresqleu/settings.py +++ b/postgresqleu/settings.py @@ -104,11 +104,12 @@ INSTALLED_APPS = [ 'postgresqleu.static', 'postgresqleu.countries', 'postgresqleu.scheduler.apps.SchedulerAppConfig', + 'postgresqleu.digisign', 'postgresqleu.paypal', 'postgresqleu.adyen', 'postgresqleu.newsevents', 'postgresqleu.confreg', - 'postgresqleu.confsponsor', + 'postgresqleu.confsponsor.apps.ConfsponsorAppConfig', 'postgresqleu.confwiki', 'postgresqleu.mailqueue', 'postgresqleu.invoices', |