Retrospring/lib/use_case/data_export/reactions.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
490 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module UseCase
module DataExport
class Reactions < UseCase::DataExport::Base
def files = {
"reactions.json" => json_file!(
reactions: [
*user.smiles.map(&method(:collect_reaction))
2023-10-25 21:05:14 -07:00
],
),
}
def collect_reaction(reaction)
{}.tap do |h|
column_names(::Reaction).each do |field|
h[field] = reaction[field]
end
end
end
end
end
end