Merge branch 'master' of https://github.com/discourse/discourse
This commit is contained in:
commit
033ca0e605
|
@ -349,7 +349,7 @@ class BulkImport::DiscourseMerger < BulkImport::Base
|
|||
|
||||
@sequences[Badge.sequence_name] = last_id + 1
|
||||
|
||||
copy_model(UserBadge, is_a_user_model: true, skip_if_merged: true)
|
||||
copy_model(UserBadge, is_a_user_model: true)
|
||||
end
|
||||
|
||||
def copy_model(klass, skip_if_merged: false, is_a_user_model: false, skip_processing: false, mapping: nil, select_sql: nil)
|
||||
|
@ -435,7 +435,7 @@ class BulkImport::DiscourseMerger < BulkImport::Base
|
|||
end
|
||||
|
||||
def process_topic(topic)
|
||||
return nil if topic['category_id'].nil?
|
||||
return nil if topic['category_id'].nil? && topic['archetype'] != Archetype.private_message
|
||||
topic
|
||||
end
|
||||
|
||||
|
@ -590,6 +590,7 @@ class BulkImport::DiscourseMerger < BulkImport::Base
|
|||
def process_user_badge(user_badge)
|
||||
user_badge['granted_by_id'] = user_id_from_imported_id(user_badge['granted_by_id']) if user_badge['granted_by_id']
|
||||
user_badge['notification_id'] = notification_id_from_imported_id(user_badge['notification_id']) if user_badge['notification_id']
|
||||
return nil if UserBadge.where(user_id: user_badge['user_id'], badge_id: user_badge['badge_id']).exists?
|
||||
user_badge
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue