Skip to content
Snippets Groups Projects
Commit c0cd23fe authored by Nico Vermaas's avatar Nico Vermaas
Browse files

Merge branch 'SDC-436-validation' into 'master'

config max_length to 5120 to accomodate max macaroon size

See merge request !237
parents a1354a5d 6fa2727c
No related branches found
No related tags found
2 merge requests!238Master,!237config max_length to 5120 to accomodate max macaroon size
Pipeline #28670 passed
# Generated by Django 3.1.4 on 2022-04-12 17:44
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('taskdatabase', '0016_auto_20220412_1356'),
]
operations = [
migrations.AlterField(
model_name='configuration',
name='value',
field=models.CharField(max_length=5120),
),
]
...@@ -185,7 +185,7 @@ class Configuration(models.Model): ...@@ -185,7 +185,7 @@ class Configuration(models.Model):
filter = models.CharField(max_length=30, blank=True, null=True) filter = models.CharField(max_length=30, blank=True, null=True)
key = models.CharField(max_length=50) key = models.CharField(max_length=50)
# large value needed to hold the dcache token # large value needed to hold the dcache token
value = models.CharField(max_length=3000) value = models.CharField(max_length=5120)
# the representation of the value in the REST API # the representation of the value in the REST API
def __str__(self): def __str__(self):
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
{% include 'taskdatabase/pagination.html' %} {% include 'taskdatabase/pagination.html' %}
</div> </div>
</div> </div>
<p class="footer"> Version 1.0.0 (12 apr 2021 - 13:00) <p class="footer"> Version 1.0.0 (12 apr 2021 - 20:00)
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment