Method: AssetType#non_condition
- Defined in:
- app/models/asset_type.rb
#non_condition ⇒ Object
72 73 74 75 76 77 78 |
# File 'app/models/asset_type.rb', line 72 def non_condition if @mimes.any? ["NOT asset_content_type IN (#{@mimes.map { '?' }.join(',')})", *@mimes] else self.class.non_other_condition end end |