Skip to content

Commit

Permalink
Export should always include deleted across pages
Browse files Browse the repository at this point in the history
  • Loading branch information
richardhallett committed Oct 22, 2019
1 parent 5ba0d34 commit d8d1d82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/export_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def organizations
page_num = 2
while page_num <= total_pages
page = { size: 1000, number: page_num }
response = Client.query(nil, page: page)
response = Client.query(nil, page: page, include_deleted: true)
clients = clients + response.records.to_a
page_num += 1
end
Expand Down

0 comments on commit d8d1d82

Please sign in to comment.