mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 06:16:04 +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
25 lines
464 B
Ruby
25 lines
464 B
Ruby
# frozen_string_literal: true
|
|
|
|
module UseCase
|
|
module DataExport
|
|
class Theme < UseCase::DataExport::Base
|
|
def files
|
|
return {} unless user.theme
|
|
|
|
{
|
|
"theme.json" => json_file!(
|
|
theme: theme_data
|
|
)
|
|
}
|
|
end
|
|
|
|
def theme_data
|
|
{}.tap do |obj|
|
|
column_names(::Theme).each do |field|
|
|
obj[field] = user.theme[field]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|