* Rubocop fixes * Rubocop fixes * Fixed rubocop violation * Fixed policies rubocop violations * More rubocop fixes
7 lines
147 B
Ruby
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
|