dont lowerise topics titles
This commit is contained in:
parent
e368ebf4e9
commit
d36df304f7
|
@ -16,7 +16,7 @@ def migrate(entry):
|
||||||
'slug': entry['slug'],
|
'slug': entry['slug'],
|
||||||
# 'createdBy': entry['createdBy'],
|
# 'createdBy': entry['createdBy'],
|
||||||
# 'createdAt': date_parse(entry['createdAt']),
|
# 'createdAt': date_parse(entry['createdAt']),
|
||||||
'title': entry['title'].lower(),
|
'title': entry['title'], #.lower(),
|
||||||
'children': [],
|
'children': [],
|
||||||
'community' : Community.default_community.slug,
|
'community' : Community.default_community.slug,
|
||||||
'body' : entry.get('description')
|
'body' : entry.get('description')
|
||||||
|
|
|
@ -23,7 +23,7 @@ def migrate(entry):
|
||||||
'slug': entry['slug'],
|
'slug': entry['slug'],
|
||||||
# 'createdBy': entry['createdBy'],
|
# 'createdBy': entry['createdBy'],
|
||||||
# 'createdAt': ts,
|
# 'createdAt': ts,
|
||||||
'title': entry['title'].lower(),
|
'title': entry['title'], # .lower(),
|
||||||
'children': [],
|
'children': [],
|
||||||
'community' : Community.default_community.slug,
|
'community' : Community.default_community.slug,
|
||||||
'body' : entry.get('description')
|
'body' : entry.get('description')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user