mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 20:41:01 +00:00
Clean up Verification.contain
This commit is contained in:
parent
9ef8b7a24b
commit
7bbb1a1fb1
1 changed files with 1 additions and 4 deletions
|
@ -56,9 +56,6 @@ module Verification
|
|||
# TODO: rikki?
|
||||
# Returns true if params (or its keys) are a subset of filter
|
||||
def self.contain(params, filter)
|
||||
(params.instance_of?(Array) ? params : params.keys).each do |key|
|
||||
return false unless filter.include? key.to_sym
|
||||
end
|
||||
true
|
||||
((params.instance_of?(Array) ? params : params.keys) - filter).empty?
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue