|
|
@ -162,12 +162,13 @@ class StreamLogEventsMiddleware(Middleware):
|
|
|
|
output["sheet_name"] = row["tab"]["name"] if row["tab"] else "unknown"
|
|
|
|
output["sheet_name"] = row["tab"]["name"] if row["tab"] else "unknown"
|
|
|
|
|
|
|
|
|
|
|
|
# Implicit tags
|
|
|
|
# Implicit tags
|
|
|
|
output['tags'] = [
|
|
|
|
implicit_tags = [
|
|
|
|
output['category'],
|
|
|
|
output['category'],
|
|
|
|
output["sheet_name"],
|
|
|
|
output["sheet_name"],
|
|
|
|
] + output['tags']
|
|
|
|
]
|
|
|
|
if output["poster_moment"]:
|
|
|
|
if output["poster_moment"]:
|
|
|
|
output['tags'] += 'Poster Moment'
|
|
|
|
implicit_tags.append('Poster Moment')
|
|
|
|
|
|
|
|
output['tags'] = implicit_tags + output['tags']
|
|
|
|
|
|
|
|
|
|
|
|
# Convey parent info
|
|
|
|
# Convey parent info
|
|
|
|
if row["depth"] > 0:
|
|
|
|
if row["depth"] > 0:
|
|
|
|