Skip to content

Commit

Permalink
Add discover_url param to config
Browse files Browse the repository at this point in the history
  • Loading branch information
cccs-sgaron committed Sep 23, 2021
1 parent 1661057 commit 1b1952b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions assemblyline/odm/models/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -788,6 +788,8 @@ class UI(odm.Model):
banner_level: str = odm.Enum(values=["info", "warning", "success", "error"])
# Turn on debugging
debug: bool = odm.Boolean()
# Discover URL
discover_url: str = odm.Optional(odm.Keyword())
# Which encoding will be used
download_encoding = odm.Enum(values=["raw", "cart"])
# Assemblyline admins email address
Expand Down Expand Up @@ -832,6 +834,7 @@ class UI(odm.Model):
"banner": None,
"banner_level": 'info',
"debug": False,
"discover_url": None,
"download_encoding": "cart",
"email": None,
"enforce_quota": True,
Expand Down

0 comments on commit 1b1952b

Please sign in to comment.