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