Skip to content

Commit 903deef

Browse files
changed the default to multi url pattern
1 parent af5e774 commit 903deef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sde_collections/models/delta_patterns.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class MatchPatternTypeChoices(models.IntegerChoices):
3030
match_pattern = models.CharField(
3131
"Pattern", help_text="This pattern is compared against the URL of all documents in the collection"
3232
)
33-
match_pattern_type = models.IntegerField(choices=MatchPatternTypeChoices.choices, default=1)
33+
match_pattern_type = models.IntegerField(choices=MatchPatternTypeChoices.choices, default=2)
3434
delta_urls = models.ManyToManyField(
3535
"DeltaUrl",
3636
related_name="%(class)ss", # Makes delta_url.deltaincludepatterns.all()

0 commit comments

Comments
 (0)