From bf1e817da3ea40c00fcb5a8bb6af1b3a51b95a02 Mon Sep 17 00:00:00 2001 From: Tessa Walsh Date: Thu, 6 Jul 2023 18:03:05 -0400 Subject: [PATCH] Unset default scopeType for seeds so they inherit parent scopeType by default (#952) --- backend/btrixcloud/crawlconfigs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/btrixcloud/crawlconfigs.py b/backend/btrixcloud/crawlconfigs.py index b14b26ca..6f9cb07c 100644 --- a/backend/btrixcloud/crawlconfigs.py +++ b/backend/btrixcloud/crawlconfigs.py @@ -51,7 +51,7 @@ class Seed(BaseModel): """Crawl seed""" url: HttpUrl - scopeType: Optional[ScopeType] = ScopeType.PREFIX + scopeType: Optional[ScopeType] include: Union[str, List[str], None] exclude: Union[str, List[str], None]