mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-07 16:33:24 +00:00
3ddd936b03
* Add basic coverage for settings/exports controller * Remove unused @account variable from settings/exports controller * Add coverage for download export actions * Remove deprecated `render :text` in favor of `send_data` for csv downloads * Add model to handle exports * Use Export class in settings/exports controller * Simplify settings/exports controller methods * Move settings/export to more restful routes
19 lines
327 B
Ruby
19 lines
327 B
Ruby
# frozen_string_literal: true
|
|
require 'csv'
|
|
|
|
class Export
|
|
attr_reader :accounts
|
|
|
|
def initialize(accounts)
|
|
@accounts = accounts
|
|
end
|
|
|
|
def to_csv
|
|
CSV.generate do |csv|
|
|
accounts.each do |account|
|
|
csv << [(account.local? ? account.local_username_and_domain : account.acct)]
|
|
end
|
|
end
|
|
end
|
|
end
|