Update settings.default.py - tags not tag

tags is now an array
pull/998/head
Alexandre Dulaunoy 2023-05-19 10:12:42 +02:00 committed by GitHub
parent 4ef26538eb
commit abb284d56d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ outputdir = 'output'
# you can use on the event index, such as organisation, tags, etc. # you can use on the event index, such as organisation, tags, etc.
# It uses the same joining and condition rules as the API parameters # It uses the same joining and condition rules as the API parameters
# For example: # For example:
# filters = {'tag':'tlp:white|feed-export|!privint','org':'CIRCL', 'published':1} # filters = {'tags':['tlp:white','feed-export','!privint'],'org':'CIRCL', 'published':1}
# the above would generate a feed for all published events created by CIRCL, # the above would generate a feed for all published events created by CIRCL,
# tagged tlp:white and/or feed-export but exclude anything tagged privint # tagged tlp:white and/or feed-export but exclude anything tagged privint
filters = {'published':'true'} filters = {'published':'true'}
@ -53,4 +53,4 @@ exclude_attribute_types = []
with_distribution = False with_distribution = False
# Include the exportable local tags along with the global tags. The default is True. # Include the exportable local tags along with the global tags. The default is True.
with_local_tags = True with_local_tags = True