discourse/spec/fixtures/json/base-import-data.json
Martin Brennan 867bc3b48e
FIX: Change base importer to create new Bookmark records (#9603)
Also add a spec and fixture with a mock importer that we can use to test the create_X methods of the base importer
2020-05-01 11:34:55 +10:00

58 lines
924 B
JSON

{
"bookmarks":[
{
"post_id":10,
"user_id":20
},
{
"post_id":11,
"user_id":20
},
{
"post_id":12,
"user_id":20
},
{
"post_id":13,
"user_id":20
},
{
"post_id":14,
"user_id":20
}
],
"posts":[
{
"user_id":20,
"id":10,
"raw":"This is test post 1"
},
{
"user_id":20,
"id":11,
"raw":"This is test post 2"
},
{
"user_id":20,
"id":12,
"raw":"This is test post 3"
},
{
"user_id":20,
"id":13,
"raw":"This is test post 4"
},
{
"user_id":20,
"id":14,
"raw":"This is test post 5"
}
],
"users":[
{
"id":20,
"email":"testimportuser@test.com"
}
]
}