Fix mastodon:stats decoration of stats rake task (#31104)

This commit is contained in:
Matt Jankowski 2024-07-23 02:51:57 -04:00 committed by GitHub
parent 9a015a2a15
commit 1b839d2cba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,11 +9,13 @@ namespace :mastodon do
[ [
['App Libraries', 'app/lib'], ['App Libraries', 'app/lib'],
%w(Presenters app/presenters), %w(Presenters app/presenters),
%w(Policies app/policies),
%w(Serializers app/serializers),
%w(Services app/services), %w(Services app/services),
%w(Validators app/validators), %w(Validators app/validators),
%w(Workers app/workers), %w(Workers app/workers),
].each do |name, dir| ].each do |name, dir|
STATS_DIRECTORIES << [name, Rails.root.join(dir)] STATS_DIRECTORIES << [name, dir]
end end
end end
end end