Skip to content

Commit

Permalink
fix: Add missing field in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot committed Oct 26, 2023
1 parent 893b295 commit 969146e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion website/web/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,8 @@ def get(self):
compare_settings_mapping = api.model('CompareSettings', {
'ressources_ignore_domains': fields.List(fields.String(description="A domain to ignore")),
'ressources_ignore_regexes': fields.List(fields.String(description="A regex to match anything in a URL")),
'ignore_ips': fields.Boolean('Ignore IPs when comparing nodes. Avoid flagging two captures are different when served on CDNs.')
'ignore_ips': fields.Boolean('Ignore IPs when comparing nodes. Avoid flagging two captures are different when served on CDNs.'),
'skip_failed_captures': fields.Boolean('Skip failed captures. Avoid attempting to capture two captures when one of them failed.')
})

notification_mapping = api.model('NotificationSettings', {
Expand Down

0 comments on commit 969146e

Please sign in to comment.