Import more data about badges
This commit is contained in:
parent
b9f4f51d9d
commit
8d6ab2a098
|
@ -772,6 +772,14 @@ class BulkImport::Base
|
||||||
updated_at
|
updated_at
|
||||||
multiple_grant
|
multiple_grant
|
||||||
query
|
query
|
||||||
|
allow_title
|
||||||
|
icon
|
||||||
|
listable
|
||||||
|
target_posts
|
||||||
|
enabled
|
||||||
|
auto_revoke
|
||||||
|
trigger
|
||||||
|
show_posts
|
||||||
]
|
]
|
||||||
|
|
||||||
USER_BADGE_COLUMNS = %i[badge_id user_id granted_at granted_by_id seq post_id created_at]
|
USER_BADGE_COLUMNS = %i[badge_id user_id granted_at granted_by_id seq post_id created_at]
|
||||||
|
|
|
@ -2344,6 +2344,15 @@ class BulkImport::Generic < BulkImport::Base
|
||||||
image_upload_id:
|
image_upload_id:
|
||||||
row["image_upload_id"] ? upload_id_from_original_id(row["image_upload_id"]) : nil,
|
row["image_upload_id"] ? upload_id_from_original_id(row["image_upload_id"]) : nil,
|
||||||
query: row["query"],
|
query: row["query"],
|
||||||
|
multiple_grant: to_boolean(row["multiple_grant"]),
|
||||||
|
allow_title: to_boolean(row["allow_title"]),
|
||||||
|
icon: row["icon"],
|
||||||
|
listable: to_boolean(row["listable"]),
|
||||||
|
target_posts: to_boolean(row["target_posts"]),
|
||||||
|
enabled: to_boolean(row["enabled"]),
|
||||||
|
auto_revoke: to_boolean(row["auto_revoke"]),
|
||||||
|
trigger: row["trigger"],
|
||||||
|
show_posts: to_boolean(row["show_posts"]),
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue