Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:maykinmedia/open-inwoner into de…
Browse files Browse the repository at this point in the history
…velop
  • Loading branch information
alextreme committed Mar 20, 2023
2 parents 5473a97 + 0300df5 commit a1505d7
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Generated by Django 3.2.15 on 2023-03-20 15:06

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("log_outgoing_requests", "0001_initial"),
]

operations = [
migrations.AlterField(
model_name="outgoingrequestslog",
name="url",
field=models.URLField(
blank=True,
default="",
help_text="The url of the outgoing request.",
max_length=1000,
verbose_name="URL",
),
),
]
1 change: 1 addition & 0 deletions src/log_outgoing_requests/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
class OutgoingRequestsLog(models.Model):
url = models.URLField(
verbose_name=_("URL"),
max_length=1000,
blank=True,
default="",
help_text=_("The url of the outgoing request."),
Expand Down
2 changes: 1 addition & 1 deletion src/open_inwoner/conf/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@
#
# LOG OUTGOING REQUESTS
#
LOG_OUTGOING_REQUESTS_DB_SAVE = config("LOG_OUTGOING_REQUESTS_DB_SAVE", default=False)
LOG_OUTGOING_REQUESTS_DB_SAVE = config("LOG_OUTGOING_REQUESTS_DB_SAVE", default=True)


#
Expand Down

0 comments on commit a1505d7

Please sign in to comment.