mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 18:29:52 +01:00
23 lines
490 B
Ruby
23 lines
490 B
Ruby
# 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))
|
|
],
|
|
),
|
|
}
|
|
|
|
def collect_reaction(reaction)
|
|
{}.tap do |h|
|
|
column_names(::Reaction).each do |field|
|
|
h[field] = reaction[field]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|