docbrown/app/services/users/profile_image_generator.rb
Anna Buianova 784afdf41e
Routine rubocop fixes (#19254)
* Rubocop fixes

* Rubocop fixes

* Fixed rubocop violation

* Fixed policies rubocop violations

* More rubocop fixes
2023-03-24 14:37:44 +03:00

7 lines
147 B
Ruby

module Users
module ProfileImageGenerator
def self.call
Rails.root.join("app/assets/images/#{rand(1..40)}.png").open
end
end
end