mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 17:06:03 +01:00
9413d23a02
this also allows the UseCase classes to be hot reloaded in dev 🎉
- remove use_case requires (except for the exporter as Zeitwerk
doesn't know about the subclasses)
- move version.rb to lib/retrospring so that Zeitwerk knows where
to find Retrospring::Version
27 lines
811 B
Ruby
27 lines
811 B
Ruby
# frozen_string_literal: true
|
|
|
|
module UseCase
|
|
module DataExport
|
|
class Relationships < UseCase::DataExport::Base
|
|
def files = {
|
|
"relationships.json" => json_file!(
|
|
relationships: [
|
|
# don't want to add the passive (block) relationships here as it
|
|
# would reveal who e.g. blocked the exported user, which is
|
|
# considered A Bad Idea™
|
|
*user.active_follow_relationships.map(&method(:collect_relationship)),
|
|
*user.active_block_relationships.map(&method(:collect_relationship))
|
|
]
|
|
)
|
|
}
|
|
|
|
def collect_relationship(relationship)
|
|
{}.tap do |h|
|
|
column_names(::Relationship).each do |field|
|
|
h[field] = relationship[field]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|