Skip to content
This repository was archived by the owner on Apr 29, 2022. It is now read-only.

Commit 4570fc9

Browse files
authored
Merge branch 'ep2021' into ep2021
2 parents c6d9c52 + 54f6580 commit 4570fc9

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 2.2.19 on 2021-05-17 07:32
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('assopy', '0015_remove_refund_models'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='vat',
15+
name='fares',
16+
field=models.ManyToManyField(blank=True, through='assopy.VatFare', to='conference.Fare'),
17+
),
18+
]

assopy/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ def create(self, user, payment, items, billing_notes='', coupons=None, country=N
511511
class Vat(models.Model):
512512
fares = models.ManyToManyField(Fare,
513513
through='VatFare',
514-
null=True, blank=True)
514+
blank=True)
515515
value = models.DecimalField(max_digits=5, decimal_places=2)
516516
description = models.CharField(null=True, blank=True, max_length=125)
517517
invoice_notice = models.TextField(null=True, blank=True)

pycon/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -730,11 +730,11 @@ def CONFERENCE_SCHEDULE_ATTENDEES(schedule, forecast):
730730
# Matrix Auth API settings
731731
MATRIX_AUTH_API_DEBUG = config(
732732
'MATRIX_AUTH_API_DEBUG',
733-
default=False,
733+
default=True,
734734
cast=bool
735735
)
736736
MATRIX_AUTH_API_ALLOWED_IPS = config(
737737
'MATRIX_AUTH_API_ALLOWED_IPS',
738738
default='',
739-
cast=lambda v: [s.strip() for s in v.split(',')]
739+
cast=lambda v: [s.strip() for s in v.split(',') if s.strip()]
740740
)

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ django-treebeard==4.4
9595
# via
9696
# -r requirements.in
9797
# django-cms
98-
django==2.2.19
98+
django==2.2.23
9999
# via
100100
# -r requirements.in
101101
# cmsplugin-filer

0 commit comments

Comments
 (0)