In Ruby 5.2, we get a warning when using the "RANDOM()" function: DEPRECATION WARNING: Dangerous query method (method whose arguments are used as raw SQL) called with non-attribute argument(s): "RANDOM()". Non-attribute arguments will be disallowed in Rails 6.0. This method should not be called with user-provided values, such as request parameters or model attributes. Known-safe values can be passed by wrapping them in Arel.sql(). This warning doesn't make much sense, though, since RANDOM() is a common function which is not dangerous at all. However, since the warning is annoying, we'll probably have to find a way to deal with it. So I'm extracting all our RANDOM() usages into a method. This way we'll only have to change one method to avoid this warning. I've chosen `sample` because it's similar to Ruby's Array#sample, and because `order_by_random` would be confusing if we consider we already have a method called `sort_by_random`.
12 lines
468 B
Ruby
12 lines
468 B
Ruby
section "Hiding debates, comments & proposals" do
|
|
Comment.with_hidden.flagged.sample(30).each(&:hide)
|
|
Debate.with_hidden.flagged.sample(5).each(&:hide)
|
|
Proposal.with_hidden.flagged.sample(10).each(&:hide)
|
|
end
|
|
|
|
section "Confirming hiding in debates, comments & proposals" do
|
|
Comment.only_hidden.flagged.sample(10).each(&:confirm_hide)
|
|
Debate.only_hidden.flagged.sample(5).each(&:confirm_hide)
|
|
Proposal.only_hidden.flagged.sample(5).each(&:confirm_hide)
|
|
end
|