Guest User

Untitled

a guest
Jan 21st, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. self.primary_format == "Single" || self.primary_format == "EP"
  2.  
  3. self.primary_format == "Single" || "EP"
  4.  
  5. self.release.primary_genre.id == 3 || 6 || 8 || 12 || 18
  6.  
  7. self.primary_format == "Single" || self.primary_format == "EP"
  8.  
  9. self.primary_format == "Single" || "EP"
  10.  
  11. [3, 6, 8, 12, 18].include?(self.release.primary_genre.id )
  12.  
  13. ["Single", "EP"].include? self.primary_format
  14. [3, 6, 8, 12, 18].include? self.release.primary_genre.id
Add Comment
Please, Sign In to add comment